Solutions are presented as using the least memory and the fastest execution time. It also takes the top 10 most recent solutions from each language. If you want to limit to a specific index, click the "Solved" button and go to that problem.
ContestId |
Name |
Phase |
Frozen |
Duration (Seconds) |
Relative Time |
Start Time |
---|---|---|---|---|---|---|
1472 | Codeforces Round 693 (Div. 3) | FINISHED | False | 7200 | 127495463 | Jan. 4, 2021, 2:35 p.m. |
Solved$ |
Index |
Name |
Type |
Tags |
Community Tag |
Rating |
---|---|---|---|---|---|---|
( 42645 ) | A | Cards for Friends | PROGRAMMING | greedy math |
B'For the New Year, Polycarp decided to send postcards to all his n friends. He wants to make postcards with his own hands. For this purpose, he has a sheet of paper of size w x h , which can be cut into pieces. Polycarp can cut any sheet of paper w x h that he has in only two cases: If w and h are even at the same time, then Polycarp can cut the sheet according to any of the rules above. After cutting a sheet of paper, the total number of sheets of paper is increased by 1 . Help Polycarp to find out if he can cut his sheet of size w x h at into n or more pieces, using only the rules described above. The first line contains one integer t ( 1 <= t <= 10^4 ) -- the number of test cases. Then t test cases follow. Each test case consists of one line containing three integers w , h , n ( 1 <= w, h <= 10^4, 1 <= n <= 10^9 ) -- the width and height of the sheet Polycarp has and the number of friends he needs to send a postcard to. For each test case, output on a separate line: You can output "YES" and "NO" in any case (for example, the strings yEs, yes, Yes and YES will be recognized as positive). In the first test case, you can first cut the 2 x 2 sheet into two 2 x 1 sheets, and then cut each of them into two more sheets. As a result, we get four sheets 1 x 1 . We can choose any three of them and send them to our friends. In the second test case, a 3 x 3 sheet cannot be cut, so it is impossible to get two sheets. In the third test case, you can cut a 5 x 10 sheet into two 5 x 5 sheets. In the fourth test case, there is no need to cut the sheet, since we only need one sheet. In the fifth test case, you can first cut the 1 x 4 sheet into two 1 x 2 sheets, and then cut each of them into two more sheets. As a result, we get four sheets 1 x 1 . '... |
Codeforces Round #693 (Div. 3) Editorial |
Submission Id |
Author(s) |
Index |
Submitted |
Verdict |
Language |
Test Set |
Tests Passed |
Time taken (ms) |
Memory Consumed (bytes) |
Tags |
Rating |
---|---|---|---|---|---|---|---|---|---|---|---|
103341087 | Moriarty2.0 | A | Jan. 5, 2021, 4:24 a.m. | OK | Clang++17 Diagnostics | TESTS | 14 | 202 | 204800 | ||
103332279 | VN.Kiet | A | Jan. 4, 2021, 11:49 p.m. | OK | FPC | TESTS | 14 | 61 | 204800 | ||
103335995 | ce_amtic | A | Jan. 5, 2021, 2:10 a.m. | OK | GNU C++11 | TESTS | 14 | 15 | 0 | ||
103340776 | Rainer1116 | A | Jan. 5, 2021, 4:17 a.m. | OK | GNU C++11 | TESTS | 14 | 30 | 0 | ||
103336313 | Ahsan_Habib_Sowmik | A | Jan. 5, 2021, 2:19 a.m. | OK | GNU C++11 | TESTS | 14 | 31 | 0 | ||
103340321 | topcoder815 | A | Jan. 5, 2021, 4:08 a.m. | OK | GNU C++11 | TESTS | 14 | 31 | 0 | ||
103339682 | GoroMajima | A | Jan. 5, 2021, 3:54 a.m. | OK | GNU C++11 | TESTS | 14 | 31 | 0 | ||
103337889 | iyua | A | Jan. 5, 2021, 3:08 a.m. | OK | GNU C++11 | TESTS | 14 | 31 | 0 | ||
103342143 | olimpo | A | Jan. 5, 2021, 4:46 a.m. | OK | GNU C++11 | TESTS | 14 | 31 | 0 | ||
103341062 | r4ge | A | Jan. 5, 2021, 4:23 a.m. | OK | GNU C++11 | TESTS | 14 | 31 | 0 | ||
103340540 | iswangalways | A | Jan. 5, 2021, 4:12 a.m. | OK | GNU C++11 | TESTS | 14 | 31 | 0 | ||
103340521 | newbie2015 | A | Jan. 5, 2021, 4:12 a.m. | OK | GNU C++11 | TESTS | 14 | 31 | 0 | ||
103323525 | ansergeyg | A | Jan. 4, 2021, 7:58 p.m. | OK | .NET Core C# | TESTS | 14 | 93 | 3072000 | ||
103309757 | Nenad1337 | A | Jan. 4, 2021, 5:15 p.m. | OK | .NET Core C# | TESTS | 14 | 124 | 2457600 | ||
103336857 | JudeBirch | A | Jan. 5, 2021, 2:37 a.m. | OK | .NET Core C# | TESTS | 14 | 124 | 2560000 |
Back to search problems