Task: | 2021-luvut |
Sender: | caro |
Submission time: | 2020-10-02 17:45:40 +0300 |
Language: | C++ (C++11) |
Status: | READY |
Result: | 0 |
group | verdict | score |
---|---|---|
#1 | WRONG ANSWER | 0 |
#2 | WRONG ANSWER | 0 |
#3 | WRONG ANSWER | 0 |
#4 | WRONG ANSWER | 0 |
test | verdict | time | group | |
---|---|---|---|---|
#1 | ACCEPTED | 0.02 s | 1, 2, 3, 4 | details |
#2 | WRONG ANSWER | 0.05 s | 1, 2, 3, 4 | details |
#3 | WRONG ANSWER | 0.05 s | 1, 2, 3, 4 | details |
#4 | WRONG ANSWER | 0.05 s | 1, 2, 3, 4 | details |
#5 | WRONG ANSWER | 0.05 s | 1, 2, 3, 4 | details |
#6 | WRONG ANSWER | 0.05 s | 1, 2, 3, 4 | details |
#7 | WRONG ANSWER | 0.05 s | 1, 2, 3, 4 | details |
#8 | WRONG ANSWER | 0.06 s | 1, 2, 3, 4 | details |
#9 | WRONG ANSWER | 0.05 s | 1, 2, 3, 4 | details |
#10 | WRONG ANSWER | 0.05 s | 1, 2, 3, 4 | details |
#11 | WRONG ANSWER | 0.05 s | 2, 3, 4 | details |
#12 | WRONG ANSWER | 0.05 s | 2, 3, 4 | details |
#13 | WRONG ANSWER | 0.06 s | 2, 3, 4 | details |
#14 | WRONG ANSWER | 0.06 s | 2, 3, 4 | details |
#15 | WRONG ANSWER | 0.06 s | 2, 3, 4 | details |
#16 | WRONG ANSWER | 0.06 s | 2, 3, 4 | details |
#17 | WRONG ANSWER | 0.05 s | 2, 3, 4 | details |
#18 | WRONG ANSWER | 0.06 s | 2, 3, 4 | details |
#19 | WRONG ANSWER | 0.05 s | 2, 3, 4 | details |
#20 | WRONG ANSWER | 0.05 s | 2, 3, 4 | details |
#21 | WRONG ANSWER | 0.05 s | 3, 4 | details |
#22 | WRONG ANSWER | 0.05 s | 3, 4 | details |
#23 | WRONG ANSWER | 0.05 s | 3, 4 | details |
#24 | WRONG ANSWER | 0.05 s | 3, 4 | details |
#25 | WRONG ANSWER | 0.06 s | 3, 4 | details |
#26 | WRONG ANSWER | 0.05 s | 3, 4 | details |
#27 | WRONG ANSWER | 0.05 s | 3, 4 | details |
#28 | WRONG ANSWER | 0.05 s | 3, 4 | details |
#29 | WRONG ANSWER | 0.05 s | 3, 4 | details |
#30 | WRONG ANSWER | 0.06 s | 3, 4 | details |
#31 | WRONG ANSWER | 0.06 s | 4 | details |
#32 | WRONG ANSWER | 0.05 s | 4 | details |
#33 | WRONG ANSWER | 0.06 s | 4 | details |
#34 | WRONG ANSWER | 0.05 s | 4 | details |
#35 | WRONG ANSWER | 0.06 s | 4 | details |
#36 | WRONG ANSWER | 0.05 s | 4 | details |
#37 | WRONG ANSWER | 0.06 s | 4 | details |
#38 | WRONG ANSWER | 0.06 s | 4 | details |
#39 | WRONG ANSWER | 0.05 s | 4 | details |
#40 | WRONG ANSWER | 0.05 s | 4 | details |
Code
#include <bits/stdc++.h> using namespace std; typedef unsigned long long ull; int main(){ ull n; cin >> n; ull res; ull a = 1; for(int i = 0; i < 90000; i++){ ull x = i; ull p = 0; while(x > 0){ p++; x /= 10; } x = i; uint c = 0; while(c != 4 && x != 0){ ull z = x / pow(10, p); if(c == 0 && z == 2) c++; else if(c == 1 && z == 0) c++; else if(c == 2 && z == 2) c++; else if(c == 3 && z == 1) c++; x -= z * pow(10, p); p--; } if(c == 4 && a == n){ res = i; break; //cout << i << '\n'; } if(c == 4) a++; } cout << res << '\n'; return 0; }
Test details
Test 1
Group: 1, 2, 3, 4
Verdict: ACCEPTED
input |
---|
10 |
correct output |
---|
20214 |
user output |
---|
20214 |
Test 2
Group: 1, 2, 3, 4
Verdict: WRONG ANSWER
input |
---|
359 |
correct output |
---|
202661 |
user output |
---|
0 |
Test 3
Group: 1, 2, 3, 4
Verdict: WRONG ANSWER
input |
---|
392 |
correct output |
---|
202819 |
user output |
---|
0 |
Test 4
Group: 1, 2, 3, 4
Verdict: WRONG ANSWER
input |
---|
715 |
correct output |
---|
230721 |
user output |
---|
0 |
Test 5
Group: 1, 2, 3, 4
Verdict: WRONG ANSWER
input |
---|
278 |
correct output |
---|
202219 |
user output |
---|
0 |
Test 6
Group: 1, 2, 3, 4
Verdict: WRONG ANSWER
input |
---|
296 |
correct output |
---|
202318 |
user output |
---|
0 |
Test 7
Group: 1, 2, 3, 4
Verdict: WRONG ANSWER
input |
---|
427 |
correct output |
---|
203214 |
user output |
---|
0 |
Test 8
Group: 1, 2, 3, 4
Verdict: WRONG ANSWER
input |
---|
565 |
correct output |
---|
208212 |
user output |
---|
0 |
Test 9
Group: 1, 2, 3, 4
Verdict: WRONG ANSWER
input |
---|
289 |
correct output |
---|
202311 |
user output |
---|
0 |
Test 10
Group: 1, 2, 3, 4
Verdict: WRONG ANSWER
input |
---|
342 |
correct output |
---|
202581 |
user output |
---|
0 |
Test 11
Group: 2, 3, 4
Verdict: WRONG ANSWER
input |
---|
964486 |
correct output |
---|
182502018 |
user output |
---|
0 |
Test 12
Group: 2, 3, 4
Verdict: WRONG ANSWER
input |
---|
110979 |
correct output |
---|
20296916 |
user output |
---|
0 |
Test 13
Group: 2, 3, 4
Verdict: WRONG ANSWER
input |
---|
759149 |
correct output |
---|
126108721 |
user output |
---|
0 |
Test 14
Group: 2, 3, 4
Verdict: WRONG ANSWER
input |
---|
234934 |
correct output |
---|
25023210 |
user output |
---|
0 |
Test 15
Group: 2, 3, 4
Verdict: WRONG ANSWER
input |
---|
610310 |
correct output |
---|
120288133 |
user output |
---|
0 |
Test 16
Group: 2, 3, 4
Verdict: WRONG ANSWER
input |
---|
956690 |
correct output |
---|
182027419 |
user output |
---|
0 |
Test 17
Group: 2, 3, 4
Verdict: WRONG ANSWER
input |
---|
608459 |
correct output |
---|
120281827 |
user output |
---|
0 |
Test 18
Group: 2, 3, 4
Verdict: WRONG ANSWER
input |
---|
944777 |
correct output |
---|
175260251 |
user output |
---|
0 |
Test 19
Group: 2, 3, 4
Verdict: WRONG ANSWER
input |
---|
880780 |
correct output |
---|
152270421 |
user output |
---|
0 |
Test 20
Group: 2, 3, 4
Verdict: WRONG ANSWER
input |
---|
418357 |
correct output |
---|
68202361 |
user output |
---|
0 |
Test 21
Group: 3, 4
Verdict: WRONG ANSWER
input |
---|
713294506861 |
correct output |
---|
20099206371786 |
user output |
---|
0 |
Test 22
Group: 3, 4
Verdict: WRONG ANSWER
input |
---|
191431126351 |
correct output |
---|
4193020274761 |
user output |
---|
0 |
Test 23
Group: 3, 4
Verdict: WRONG ANSWER
input |
---|
778422318223 |
correct output |
---|
20247733120134 |
user output |
---|
0 |
Test 24
Group: 3, 4
Verdict: WRONG ANSWER
input |
---|
931090767075 |
correct output |
---|
20691282041612 |
user output |
---|
0 |
Test 25
Group: 3, 4
Verdict: WRONG ANSWER
input |
---|
198806129726 |
correct output |
---|
4275365802196 |
user output |
---|
0 |
Test 26
Group: 3, 4
Verdict: WRONG ANSWER
input |
---|
724343399444 |
correct output |
---|
20128443204610 |
user output |
---|
0 |
Test 27
Group: 3, 4
Verdict: WRONG ANSWER
input |
---|
105064053560 |
correct output |
---|
2350677231115 |
user output |
---|
0 |
Test 28
Group: 3, 4
Verdict: WRONG ANSWER
input |
---|
236866700902 |
correct output |
---|
5872395029521 |
user output |
---|
0 |
Test 29
Group: 3, 4
Verdict: WRONG ANSWER
input |
---|
696349488695 |
correct output |
---|
20034225603103 |
user output |
---|
0 |
Test 30
Group: 3, 4
Verdict: WRONG ANSWER
input |
---|
30929267826 |
correct output |
---|
1205256095901 |
user output |
---|
0 |
Test 31
Group: 4
Verdict: WRONG ANSWER
input |
---|
576379198814226780 |
correct output |
---|
4185251600926331891 |
user output |
---|
0 |
Test 32
Group: 4
Verdict: WRONG ANSWER
input |
---|
291698664446913099 |
correct output |
---|
2280132983584730156 |
user output |
---|
0 |
Test 33
Group: 4
Verdict: WRONG ANSWER
input |
---|
693146378550043345 |
correct output |
---|
5270258230724009910 |
user output |
---|
0 |
Test 34
Group: 4
Verdict: WRONG ANSWER
input |
---|
685982323362439932 |
correct output |
---|
5236052744416920782 |
user output |
---|
0 |
Test 35
Group: 4
Verdict: WRONG ANSWER
input |
---|
838865925103308874 |
correct output |
---|
6800200426815679149 |
user output |
---|
0 |
Test 36
Group: 4
Verdict: WRONG ANSWER
input |
---|
766426223219980635 |
correct output |
---|
6112960212822572807 |
user output |
---|
0 |
Test 37
Group: 4
Verdict: WRONG ANSWER
input |
---|
652970397451919317 |
correct output |
---|
4923188580186259818 |
user output |
---|
0 |
Test 38
Group: 4
Verdict: WRONG ANSWER
input |
---|
188458586650539464 |
correct output |
---|
1903508375720755921 |
user output |
---|
0 |
Test 39
Group: 4
Verdict: WRONG ANSWER
input |
---|
157646989818721527 |
correct output |
---|
1525038392797601315 |
user output |
---|
0 |
Test 40
Group: 4
Verdict: WRONG ANSWER
input |
---|
898606361978236778 |
correct output |
---|
7326676702587314407 |
user output |
---|
0 |