Task: | Gas tank |
Sender: | aalto2024k_004 |
Submission time: | 2024-11-13 17:00:02 +0200 |
Language: | C++ (C++17) |
Status: | READY |
Result: | WRONG ANSWER |
test | verdict | time | |
---|---|---|---|
#1 | WRONG ANSWER | 0.00 s | details |
#2 | ACCEPTED | 0.00 s | details |
#3 | WRONG ANSWER | 0.00 s | details |
#4 | WRONG ANSWER | 0.00 s | details |
#5 | WRONG ANSWER | 0.00 s | details |
#6 | WRONG ANSWER | 0.00 s | details |
#7 | WRONG ANSWER | 0.00 s | details |
#8 | WRONG ANSWER | 0.00 s | details |
#9 | WRONG ANSWER | 0.00 s | details |
#10 | WRONG ANSWER | 0.00 s | details |
#11 | WRONG ANSWER | 0.00 s | details |
#12 | WRONG ANSWER | 0.00 s | details |
#13 | ACCEPTED | 0.00 s | details |
#14 | WRONG ANSWER | 0.00 s | details |
#15 | ACCEPTED | 0.00 s | details |
#16 | ACCEPTED | 0.00 s | details |
#17 | ACCEPTED | 0.00 s | details |
#18 | ACCEPTED | 0.00 s | details |
#19 | ACCEPTED | 0.00 s | details |
#20 | WRONG ANSWER | 0.00 s | details |
#21 | ACCEPTED | 0.00 s | details |
#22 | WRONG ANSWER | 0.00 s | details |
#23 | WRONG ANSWER | 0.00 s | details |
#24 | ACCEPTED | 0.00 s | details |
#25 | ACCEPTED | 0.00 s | details |
#26 | ACCEPTED | 0.00 s | details |
#27 | ACCEPTED | 0.00 s | details |
#28 | ACCEPTED | 0.00 s | details |
#29 | ACCEPTED | 0.00 s | details |
#30 | ACCEPTED | 0.00 s | details |
#31 | WRONG ANSWER | 0.00 s | details |
#32 | WRONG ANSWER | 0.00 s | details |
#33 | WRONG ANSWER | 0.00 s | details |
#34 | ACCEPTED | 0.00 s | details |
#35 | WRONG ANSWER | 0.00 s | details |
#36 | WRONG ANSWER | 0.00 s | details |
#37 | WRONG ANSWER | 0.00 s | details |
#38 | ACCEPTED | 0.00 s | details |
#39 | WRONG ANSWER | 0.00 s | details |
#40 | WRONG ANSWER | 0.00 s | details |
#41 | WRONG ANSWER | 0.00 s | details |
#42 | ACCEPTED | 0.00 s | details |
#43 | WRONG ANSWER | 0.00 s | details |
#44 | WRONG ANSWER | 0.00 s | details |
#45 | WRONG ANSWER | 0.00 s | details |
#46 | WRONG ANSWER | 0.00 s | details |
#47 | ACCEPTED | 0.00 s | details |
#48 | WRONG ANSWER | 0.00 s | details |
#49 | WRONG ANSWER | 0.00 s | details |
#50 | WRONG ANSWER | 0.00 s | details |
#51 | WRONG ANSWER | 0.00 s | details |
#52 | WRONG ANSWER | 0.00 s | details |
#53 | WRONG ANSWER | 0.00 s | details |
#54 | WRONG ANSWER | 0.00 s | details |
#55 | WRONG ANSWER | 0.00 s | details |
#56 | WRONG ANSWER | 0.00 s | details |
#57 | WRONG ANSWER | 0.00 s | details |
#58 | WRONG ANSWER | 0.00 s | details |
#59 | WRONG ANSWER | 0.00 s | details |
#60 | WRONG ANSWER | 0.00 s | details |
#61 | WRONG ANSWER | 0.00 s | details |
#62 | WRONG ANSWER | 0.00 s | details |
#63 | WRONG ANSWER | 0.00 s | details |
#64 | WRONG ANSWER | 0.00 s | details |
#65 | WRONG ANSWER | 0.00 s | details |
#66 | WRONG ANSWER | 0.00 s | details |
#67 | WRONG ANSWER | 0.00 s | details |
#68 | WRONG ANSWER | 0.00 s | details |
#69 | WRONG ANSWER | 0.00 s | details |
#70 | WRONG ANSWER | 0.00 s | details |
#71 | WRONG ANSWER | 0.00 s | details |
#72 | WRONG ANSWER | 0.00 s | details |
#73 | WRONG ANSWER | 0.00 s | details |
#74 | WRONG ANSWER | 0.00 s | details |
#75 | WRONG ANSWER | 0.00 s | details |
#76 | WRONG ANSWER | 0.00 s | details |
#77 | WRONG ANSWER | 0.00 s | details |
#78 | WRONG ANSWER | 0.00 s | details |
#79 | WRONG ANSWER | 0.00 s | details |
#80 | WRONG ANSWER | 0.00 s | details |
Code
#include <bits/stdc++.h> using namespace std; using ll = long long; // Debug printing #ifdef DEBUG #define deb(fmt, args...) printf("DEBUG: %d: " fmt, __LINE__, ##args) #define debug_print(fmt, args...) printf(fmt, ##args) #else #define deb(fmt, args...) #define debug_print(fmt, args...) #endif void print_array(vector<int> in, const string title = "Vector") { debug_print("DEBUG: %s [\nDEBUG: ", title.c_str()); for (unsigned int i = 0; i < in.size(); i++) { debug_print("%d ", in[i]); } debug_print("\nDEBUG: ] END\n"); } void print_matrix(vector<vector<int>> in, const string title = "Matrix") { debug_print("DEBUG: %s [\nDEBUG: ", title.c_str()); for (unsigned int i = 0; i < in.size(); i++) { for (unsigned int j = 0; j < in[i].size(); j++) { debug_print("%d ", in[i][j]); } debug_print("\nDEBUG: "); } debug_print("DEBUG: ] END\n"); } int main(int argc, char *argv[]) { ios::sync_with_stdio(0); cin.tie(0); // Read the input parameters ll n; cin >> n; if ((n & 1) == 1) { // n is odd, we cannot ever reach it, make it even n--; } double err = 0.1; for (ll a = 1; a < 20; a++) { double b = 1.0 * a * a; ll c = -n; double res = (1.0 * -b + sqrt(b * b - 1.0 * 4 * a * c)) / (2 * a); double tmp = res; double rounded = round(res); // deb("a: %d, res: %f, tmp: %f, rounded: %f\n", a, res, tmp, round(res)); if (abs(tmp - round(res)) <= err) { cout << a << " " << rounded << "\n"; return 0; } } return 0; }
Test details
Test 1
Verdict: WRONG ANSWER
input |
---|
8 |
correct output |
---|
2 1 |
user output |
---|
9 0 |
Test 2
Verdict: ACCEPTED
input |
---|
7 |
correct output |
---|
2 1 |
user output |
---|
1 2 |
Test 3
Verdict: WRONG ANSWER
input |
---|
46 |
correct output |
---|
6 1 |
user output |
---|
4 2 |
Test 4
Verdict: WRONG ANSWER
input |
---|
28 |
correct output |
---|
4 1 |
user output |
---|
3 2 |
Test 5
Verdict: WRONG ANSWER
input |
---|
40 |
correct output |
---|
5 1 |
user output |
---|
6 1 |
Test 6
Verdict: WRONG ANSWER
input |
---|
34 |
correct output |
---|
5 1 |
user output |
---|
19 0 |
Test 7
Verdict: WRONG ANSWER
input |
---|
39 |
correct output |
---|
5 1 |
user output |
---|
6 1 |
Test 8
Verdict: WRONG ANSWER
input |
---|
38 |
correct output |
---|
5 1 |
user output |
---|
6 1 |
Test 9
Verdict: WRONG ANSWER
input |
---|
25 |
correct output |
---|
4 1 |
user output |
---|
16 0 |
Test 10
Verdict: WRONG ANSWER
input |
---|
26 |
correct output |
---|
4 1 |
user output |
---|
17 0 |
Test 11
Verdict: WRONG ANSWER
input |
---|
549 |
correct output |
---|
7 6 |
user output |
---|
1 23 |
Test 12
Verdict: WRONG ANSWER
input |
---|
418 |
correct output |
---|
13 2 |
user output |
---|
1 20 |
Test 13
Verdict: ACCEPTED
input |
---|
436 |
correct output |
---|
6 6 |
user output |
---|
6 6 |
Test 14
Verdict: WRONG ANSWER
input |
---|
551 |
correct output |
---|
7 6 |
user output |
---|
1 23 |
Test 15
Verdict: ACCEPTED
input |
---|
968 |
correct output |
---|
21 2 |
user output |
---|
2 21 |
Test 16
Verdict: ACCEPTED
input |
---|
222 |
correct output |
---|
14 1 |
user output |
---|
14 1 |
Test 17
Verdict: ACCEPTED
input |
---|
893 |
correct output |
---|
13 4 |
user output |
---|
4 13 |
Test 18
Verdict: ACCEPTED
input |
---|
77 |
correct output |
---|
8 1 |
user output |
---|
8 1 |
Test 19
Verdict: ACCEPTED
input |
---|
874 |
correct output |
---|
29 1 |
user output |
---|
1 29 |
Test 20
Verdict: WRONG ANSWER
input |
---|
11 |
correct output |
---|
2 1 |
user output |
---|
10 0 |
Test 21
Verdict: ACCEPTED
input |
---|
772 |
correct output |
---|
12 4 |
user output |
---|
4 12 |
Test 22
Verdict: WRONG ANSWER
input |
---|
181 |
correct output |
---|
5 4 |
user output |
---|
1 13 |
Test 23
Verdict: WRONG ANSWER
input |
---|
155 |
correct output |
---|
11 1 |
user output |
---|
1 12 |
Test 24
Verdict: ACCEPTED
input |
---|
778 |
correct output |
---|
12 4 |
user output |
---|
4 12 |
Test 25
Verdict: ACCEPTED
input |
---|
514 |
correct output |
---|
15 2 |
user output |
---|
2 15 |
Test 26
Verdict: ACCEPTED
input |
---|
849 |
correct output |
---|
8 7 |
user output |
---|
7 8 |
Test 27
Verdict: ACCEPTED
input |
---|
224 |
correct output |
---|
14 1 |
user output |
---|
14 1 |
Test 28
Verdict: ACCEPTED
input |
---|
295 |
correct output |
---|
11 2 |
user output |
---|
11 2 |
Test 29
Verdict: ACCEPTED
input |
---|
651 |
correct output |
---|
25 1 |
user output |
---|
1 25 |
Test 30
Verdict: ACCEPTED
input |
---|
98 |
correct output |
---|
6 2 |
user output |
---|
2 6 |
Test 31
Verdict: WRONG ANSWER
input |
---|
588264 |
correct output |
---|
172 18 |
user output |
---|
16 184 |
Test 32
Verdict: WRONG ANSWER
input |
---|
48736 |
correct output |
---|
80 7 |
user output |
---|
3 126 |
Test 33
Verdict: WRONG ANSWER
input |
---|
208508 |
correct output |
---|
99 18 |
user output |
---|
12 126 |
Test 34
Verdict: ACCEPTED
input |
---|
517415 |
correct output |
---|
172 16 |
user output |
---|
16 172 |
Test 35
Verdict: WRONG ANSWER
input |
---|
960234 |
correct output |
---|
290 11 |
user output |
---|
2 692 |
Test 36
Verdict: WRONG ANSWER
input |
---|
870321 |
correct output |
---|
111 49 |
user output |
---|
10 290 |
Test 37
Verdict: WRONG ANSWER
input |
---|
308005 |
correct output |
---|
70 40 |
user output |
---|
3 319 |
Test 38
Verdict: ACCEPTED
input |
---|
425818 |
correct output |
---|
652 1 |
user output |
---|
1 652 |
Test 39
Verdict: WRONG ANSWER
input |
---|
729178 |
correct output |
---|
83 61 |
user output |
---|
4 425 |
Test 40
Verdict: WRONG ANSWER
input |
---|
863955 |
correct output |
---|
535 3 |
user output |
---|
1 929 |
Test 41
Verdict: WRONG ANSWER
input |
---|
116086 |
correct output |
---|
340 1 |
user output |
---|
2 240 |
Test 42
Verdict: ACCEPTED
input |
---|
612309 |
correct output |
---|
782 1 |
user output |
---|
1 782 |
Test 43
Verdict: WRONG ANSWER
input |
---|
375142 |
correct output |
---|
228 7 |
user output |
---|
1 612 |
Test 44
Verdict: WRONG ANSWER
input |
---|
852178 |
correct output |
---|
161 28 |
user output |
---|
10 287 |
Test 45
Verdict: WRONG ANSWER
input |
---|
151667 |
correct output |
---|
156 6 |
user output |
---|
1 389 |
Test 46
Verdict: WRONG ANSWER
input |
---|
196137 |
correct output |
---|
103 16 |
user output |
---|
7 164 |
Test 47
Verdict: ACCEPTED
input |
---|
375254 |
correct output |
---|
612 1 |
user output |
---|
1 612 |
Test 48
Verdict: WRONG ANSWER
input |
---|
451513 |
correct output |
---|
298 5 |
user output |
---|
4 334 |
Test 49
Verdict: WRONG ANSWER
input |
---|
942864 |
correct output |
---|
122 46 |
user output |
---|
18 220 |
Test 50
Verdict: WRONG ANSWER
input |
---|
848035 |
correct output |
---|
215 17 |
user output |
---|
6 373 |
Test 51
Verdict: WRONG ANSWER
input |
---|
727949226 |
correct output |
---|
1876 188 |
user output |
---|
1 26980 |
Test 52
Verdict: WRONG ANSWER
input |
---|
119540561 |
correct output |
---|
395 387 |
user output |
---|
1 10933 |
Test 53
Verdict: WRONG ANSWER
input |
---|
168568700 |
correct output |
---|
447 430 |
user output |
---|
1 12983 |
Test 54
Verdict: WRONG ANSWER
input |
---|
747828096 |
correct output |
---|
2098 158 |
user output |
---|
1 27346 |
Test 55
Verdict: WRONG ANSWER
input |
---|
113886324 |
correct output |
---|
949 113 |
user output |
---|
2 7545 |
Test 56
Verdict: WRONG ANSWER
input |
---|
544092912 |
correct output |
---|
2620 77 |
user output |
---|
8 8243 |
Test 57
Verdict: WRONG ANSWER
input |
---|
112927706 |
correct output |
---|
532 266 |
user output |
---|
5 4750 |
Test 58
Verdict: WRONG ANSWER
input |
---|
562461747 |
correct output |
---|
1803 159 |
user output |
---|
2 16769 |
Test 59
Verdict: WRONG ANSWER
input |
---|
930544437 |
correct output |
---|
7390 17 |
user output |
---|
8 10781 |
Test 60
Verdict: WRONG ANSWER
input |
---|
612603672 |
correct output |
---|
1128 364 |
user output |
---|
10 7822 |
Test 61
Verdict: WRONG ANSWER
input |
---|
575864416073 |
correct output |
---|
7427 5843 |
user output |
---|
3 438125 |
Test 62
Verdict: WRONG ANSWER
input |
---|
942935707814 |
correct output |
---|
63092 236 |
user output |
---|
6 396426 |
Test 63
Verdict: WRONG ANSWER
input |
---|
171264013251 |
correct output |
---|
14433 780 |
user output |
---|
1 413840 |
Test 64
Verdict: WRONG ANSWER
input |
---|
76712165827 |
correct output |
---|
8381 978 |
user output |
---|
2 195846 |
Test 65
Verdict: WRONG ANSWER
input |
---|
161612205399 |
correct output |
---|
7527 2206 |
user output |
---|
5 179782 |
Test 66
Verdict: WRONG ANSWER
input |
---|
641183113758 |
correct output |
---|
50116 254 |
user output |
---|
2 566207 |
Test 67
Verdict: WRONG ANSWER
input |
---|
87822361843 |
correct output |
---|
24538 145 |
user output |
---|
2 209549 |
Test 68
Verdict: WRONG ANSWER
input |
---|
550401843854 |
correct output |
---|
14093 2372 |
user output |
---|
2 524595 |
Test 69
Verdict: WRONG ANSWER
input |
---|
56603972680 |
correct output |
---|
10404 499 |
user output |
---|
2 168231 |
Test 70
Verdict: WRONG ANSWER
input |
---|
991404337870 |
correct output |
---|
109250 83 |
user output |
---|
3 574862 |
Test 71
Verdict: WRONG ANSWER
input |
---|
534149659344 |
correct output |
---|
53496 186 |
user output |
---|
1 730855 |
Test 72
Verdict: WRONG ANSWER
input |
---|
336010906011 |
correct output |
---|
183301 10 |
user output |
---|
1 579664 |
Test 73
Verdict: WRONG ANSWER
input |
---|
871714540470 |
correct output |
---|
214186 19 |
user output |
---|
1 933656 |
Test 74
Verdict: WRONG ANSWER
input |
---|
254659717917 |
correct output |
---|
17240 818 |
user output |
---|
2 356832 |
Test 75
Verdict: WRONG ANSWER
input |
---|
40507166127 |
correct output |
---|
3335 2196 |
user output |
---|
2 142314 |
Test 76
Verdict: WRONG ANSWER
input |
---|
445628406612 |
correct output |
---|
23039 811 |
user output |
---|
2 472031 |
Test 77
Verdict: WRONG ANSWER
input |
---|
822717753419 |
correct output |
---|
39363 524 |
user output |
---|
3 523677 |
Test 78
Verdict: WRONG ANSWER
input |
---|
40410210216 |
correct output |
---|
10096 382 |
user output |
---|
7 75976 |
Test 79
Verdict: WRONG ANSWER
input |
---|
366117794932 |
correct output |
---|
49165 151 |
user output |
---|
5 270596 |
Test 80
Verdict: WRONG ANSWER
input |
---|
657992849714 |
correct output |
---|
11698 3662 |
user output |
---|
1 811167 |