Task: | Sorting books |
Sender: | aalto2024d_007 |
Submission time: | 2024-09-25 16:28:16 +0300 |
Language: | C++ (C++11) |
Status: | READY |
Result: | WRONG ANSWER |
test | verdict | time | |
---|---|---|---|
#1 | ACCEPTED | 0.00 s | details |
#2 | ACCEPTED | 0.00 s | details |
#3 | ACCEPTED | 0.00 s | details |
#4 | ACCEPTED | 0.00 s | details |
#5 | ACCEPTED | 0.00 s | details |
#6 | ACCEPTED | 0.00 s | details |
#7 | ACCEPTED | 0.00 s | details |
#8 | WRONG ANSWER | 0.00 s | details |
#9 | ACCEPTED | 0.00 s | details |
#10 | WRONG ANSWER | 0.00 s | details |
#11 | ACCEPTED | 0.00 s | details |
#12 | WRONG ANSWER | 0.00 s | details |
#13 | WRONG ANSWER | 0.00 s | details |
#14 | ACCEPTED | 0.00 s | details |
#15 | WRONG ANSWER | 0.00 s | details |
#16 | ACCEPTED | 0.00 s | details |
#17 | WRONG ANSWER | 0.00 s | details |
#18 | ACCEPTED | 0.00 s | details |
#19 | ACCEPTED | 0.00 s | details |
#20 | ACCEPTED | 0.00 s | details |
#21 | WRONG ANSWER | 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 | WRONG ANSWER | 0.00 s | details |
#26 | ACCEPTED | 0.00 s | details |
#27 | WRONG ANSWER | 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 | WRONG ANSWER | 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 | WRONG ANSWER | 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 | WRONG ANSWER | 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 | WRONG ANSWER | 0.01 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.11 s | details |
#62 | WRONG ANSWER | 0.11 s | details |
#63 | WRONG ANSWER | 0.11 s | details |
#64 | WRONG ANSWER | 0.11 s | details |
#65 | WRONG ANSWER | 0.11 s | details |
#66 | WRONG ANSWER | 0.11 s | details |
#67 | WRONG ANSWER | 0.11 s | details |
#68 | WRONG ANSWER | 0.11 s | details |
#69 | WRONG ANSWER | 0.11 s | details |
#70 | WRONG ANSWER | 0.11 s | details |
#71 | ACCEPTED | 0.04 s | details |
Code
// Online C++ compiler to run C++ program online #include <iostream> #include <vector> #include <algorithm> using namespace std; int main() { // Write C++ code here int n; cin >> n; vector<int> nums(n); for (int i = 0; i < n; i++) cin >> nums[i]; int compCount = 0; sort(nums.begin(), nums.end(), [&](int& a, int& b){ if (a < b) compCount++; return a < b; }); cout << compCount; return 0; }
Test details
Test 1
Verdict: ACCEPTED
input |
---|
1 1 |
correct output |
---|
0 |
user output |
---|
0 |
Test 2
Verdict: ACCEPTED
input |
---|
2 3 7 |
correct output |
---|
0 |
user output |
---|
0 |
Test 3
Verdict: ACCEPTED
input |
---|
2 3 6 |
correct output |
---|
0 |
user output |
---|
0 |
Test 4
Verdict: ACCEPTED
input |
---|
2 3 8 |
correct output |
---|
0 |
user output |
---|
0 |
Test 5
Verdict: ACCEPTED
input |
---|
3 1 2 10 |
correct output |
---|
0 |
user output |
---|
0 |
Test 6
Verdict: ACCEPTED
input |
---|
3 3 7 10 |
correct output |
---|
0 |
user output |
---|
0 |
Test 7
Verdict: ACCEPTED
input |
---|
3 3 6 8 |
correct output |
---|
0 |
user output |
---|
0 |
Test 8
Verdict: WRONG ANSWER
input |
---|
4 5 5 4 10 |
correct output |
---|
2 |
user output |
---|
1 |
Test 9
Verdict: ACCEPTED
input |
---|
4 4 5 5 5 |
correct output |
---|
0 |
user output |
---|
0 |
Test 10
Verdict: WRONG ANSWER
input |
---|
4 7 10 7 1 |
correct output |
---|
4 |
user output |
---|
2 |
Test 11
Verdict: ACCEPTED
input |
---|
5 6 6 8 9 7 |
correct output |
---|
2 |
user output |
---|
2 |
Test 12
Verdict: WRONG ANSWER
input |
---|
5 5 10 8 10 1 |
correct output |
---|
5 |
user output |
---|
2 |
Test 13
Verdict: WRONG ANSWER
input |
---|
5 5 2 1 10 6 |
correct output |
---|
4 |
user output |
---|
3 |
Test 14
Verdict: ACCEPTED
input |
---|
5 6 1 8 9 3 |
correct output |
---|
4 |
user output |
---|
4 |
Test 15
Verdict: WRONG ANSWER
input |
---|
5 10 10 6 2 10 |
correct output |
---|
5 |
user output |
---|
2 |
Test 16
Verdict: ACCEPTED
input |
---|
5 3 1 9 9 3 |
correct output |
---|
3 |
user output |
---|
3 |
Test 17
Verdict: WRONG ANSWER
input |
---|
5 9 10 4 3 9 |
correct output |
---|
6 |
user output |
---|
3 |
Test 18
Verdict: ACCEPTED
input |
---|
5 1 3 8 4 5 |
correct output |
---|
2 |
user output |
---|
2 |
Test 19
Verdict: ACCEPTED
input |
---|
5 9 1 10 3 9 |
correct output |
---|
4 |
user output |
---|
4 |
Test 20
Verdict: ACCEPTED
input |
---|
5 1 4 6 5 5 |
correct output |
---|
2 |
user output |
---|
2 |
Test 21
Verdict: WRONG ANSWER
input |
---|
10 6 6 8 9 7 9 6 9 5 7 |
correct output |
---|
18 |
user output |
---|
11 |
Test 22
Verdict: WRONG ANSWER
input |
---|
10 5 10 8 10 1 2 4 10 2 3 |
correct output |
---|
25 |
user output |
---|
22 |
Test 23
Verdict: WRONG ANSWER
input |
---|
10 5 2 1 10 6 10 5 5 5 4 |
correct output |
---|
20 |
user output |
---|
19 |
Test 24
Verdict: ACCEPTED
input |
---|
10 6 1 8 9 3 2 6 6 9 5 |
correct output |
---|
18 |
user output |
---|
18 |
Test 25
Verdict: WRONG ANSWER
input |
---|
10 10 10 6 2 10 9 8 7 7 6 |
correct output |
---|
29 |
user output |
---|
26 |
Test 26
Verdict: ACCEPTED
input |
---|
10 3 1 9 9 3 4 10 10 5 1 |
correct output |
---|
17 |
user output |
---|
17 |
Test 27
Verdict: WRONG ANSWER
input |
---|
10 9 10 4 3 9 1 1 4 2 10 |
correct output |
---|
25 |
user output |
---|
18 |
Test 28
Verdict: ACCEPTED
input |
---|
10 1 3 8 4 5 10 8 5 10 4 |
correct output |
---|
12 |
user output |
---|
12 |
Test 29
Verdict: ACCEPTED
input |
---|
10 9 1 10 3 9 4 6 9 3 5 |
correct output |
---|
22 |
user output |
---|
22 |
Test 30
Verdict: ACCEPTED
input |
---|
10 1 4 6 5 5 1 2 4 2 1 |
correct output |
---|
25 |
user output |
---|
25 |
Test 31
Verdict: WRONG ANSWER
input |
---|
100 589284012 636562060 767928734 ... |
correct output |
---|
2843 |
user output |
---|
437 |
Test 32
Verdict: WRONG ANSWER
input |
---|
100 447773962 773442532 122816 137... |
correct output |
---|
2446 |
user output |
---|
452 |
Test 33
Verdict: WRONG ANSWER
input |
---|
100 468145963 198730372 27838076 5... |
correct output |
---|
2158 |
user output |
---|
509 |
Test 34
Verdict: WRONG ANSWER
input |
---|
100 591414747 75940263 760367935 9... |
correct output |
---|
2298 |
user output |
---|
498 |
Test 35
Verdict: WRONG ANSWER
input |
---|
100 967034924 587586158 185430194 ... |
correct output |
---|
2580 |
user output |
---|
470 |
Test 36
Verdict: WRONG ANSWER
input |
---|
100 238363353 59249204 934941692 8... |
correct output |
---|
2578 |
user output |
---|
519 |
Test 37
Verdict: WRONG ANSWER
input |
---|
100 958701283 356460601 224848374 ... |
correct output |
---|
2417 |
user output |
---|
506 |
Test 38
Verdict: WRONG ANSWER
input |
---|
100 81935404 244103474 837431431 3... |
correct output |
---|
2315 |
user output |
---|
425 |
Test 39
Verdict: WRONG ANSWER
input |
---|
100 937837681 11934038 257096283 9... |
correct output |
---|
2692 |
user output |
---|
604 |
Test 40
Verdict: WRONG ANSWER
input |
---|
100 11139168 391337048 538883744 5... |
correct output |
---|
2302 |
user output |
---|
446 |
Test 41
Verdict: WRONG ANSWER
input |
---|
200 589284012 636562060 767928734 ... |
correct output |
---|
10624 |
user output |
---|
1210 |
Test 42
Verdict: WRONG ANSWER
input |
---|
200 447773962 773442532 122816 137... |
correct output |
---|
9384 |
user output |
---|
1189 |
Test 43
Verdict: WRONG ANSWER
input |
---|
200 468145963 198730372 27838076 5... |
correct output |
---|
8760 |
user output |
---|
1085 |
Test 44
Verdict: WRONG ANSWER
input |
---|
200 591414747 75940263 760367935 9... |
correct output |
---|
8939 |
user output |
---|
1257 |
Test 45
Verdict: WRONG ANSWER
input |
---|
200 967034924 587586158 185430194 ... |
correct output |
---|
9905 |
user output |
---|
1103 |
Test 46
Verdict: WRONG ANSWER
input |
---|
200 238363353 59249204 934941692 8... |
correct output |
---|
9851 |
user output |
---|
1229 |
Test 47
Verdict: WRONG ANSWER
input |
---|
200 958701283 356460601 224848374 ... |
correct output |
---|
10551 |
user output |
---|
1134 |
Test 48
Verdict: WRONG ANSWER
input |
---|
200 81935404 244103474 837431431 3... |
correct output |
---|
9163 |
user output |
---|
1120 |
Test 49
Verdict: WRONG ANSWER
input |
---|
200 937837681 11934038 257096283 9... |
correct output |
---|
9346 |
user output |
---|
1270 |
Test 50
Verdict: WRONG ANSWER
input |
---|
200 11139168 391337048 538883744 5... |
correct output |
---|
9982 |
user output |
---|
1103 |
Test 51
Verdict: WRONG ANSWER
input |
---|
1000 589284012 636562060 767928734 ... |
correct output |
---|
256701 |
user output |
---|
7476 |
Test 52
Verdict: WRONG ANSWER
input |
---|
1000 447773962 773442532 122816 137... |
correct output |
---|
243505 |
user output |
---|
7016 |
Test 53
Verdict: WRONG ANSWER
input |
---|
1000 468145963 198730372 27838076 5... |
correct output |
---|
252964 |
user output |
---|
8257 |
Test 54
Verdict: WRONG ANSWER
input |
---|
1000 591414747 75940263 760367935 9... |
correct output |
---|
246581 |
user output |
---|
7449 |
Test 55
Verdict: WRONG ANSWER
input |
---|
1000 967034924 587586158 185430194 ... |
correct output |
---|
241203 |
user output |
---|
7860 |
Test 56
Verdict: WRONG ANSWER
input |
---|
1000 238363353 59249204 934941692 8... |
correct output |
---|
251093 |
user output |
---|
7689 |
Test 57
Verdict: WRONG ANSWER
input |
---|
1000 958701283 356460601 224848374 ... |
correct output |
---|
256962 |
user output |
---|
7262 |
Test 58
Verdict: WRONG ANSWER
input |
---|
1000 81935404 244103474 837431431 3... |
correct output |
---|
250165 |
user output |
---|
7777 |
Test 59
Verdict: WRONG ANSWER
input |
---|
1000 937837681 11934038 257096283 9... |
correct output |
---|
246466 |
user output |
---|
8233 |
Test 60
Verdict: WRONG ANSWER
input |
---|
1000 11139168 391337048 538883744 5... |
correct output |
---|
249076 |
user output |
---|
7064 |
Test 61
Verdict: WRONG ANSWER
input |
---|
200000 589284012 636562060 767928734 ... |
correct output |
---|
9983154934 |
user output |
---|
2606172 |
Test 62
Verdict: WRONG ANSWER
input |
---|
200000 447773962 773442532 122816 137... |
correct output |
---|
9998885834 |
user output |
---|
2541512 |
Test 63
Verdict: WRONG ANSWER
input |
---|
200000 468145963 198730372 27838076 5... |
correct output |
---|
9995310844 |
user output |
---|
2668424 |
Test 64
Verdict: WRONG ANSWER
input |
---|
200000 591414747 75940263 760367935 9... |
correct output |
---|
10000936270 |
user output |
---|
2859550 |
Test 65
Verdict: WRONG ANSWER
input |
---|
200000 967034924 587586158 185430194 ... |
correct output |
---|
10002145347 |
user output |
---|
2643063 |
Test 66
Verdict: WRONG ANSWER
input |
---|
200000 238363353 59249204 934941692 8... |
correct output |
---|
9989708150 |
user output |
---|
2874061 |
Test 67
Verdict: WRONG ANSWER
input |
---|
200000 958701283 356460601 224848374 ... |
correct output |
---|
9997845631 |
user output |
---|
2547904 |
Test 68
Verdict: WRONG ANSWER
input |
---|
200000 81935404 244103474 837431431 3... |
correct output |
---|
10016175198 |
user output |
---|
2571626 |
Test 69
Verdict: WRONG ANSWER
input |
---|
200000 937837681 11934038 257096283 9... |
correct output |
---|
9983428867 |
user output |
---|
2657406 |
Test 70
Verdict: WRONG ANSWER
input |
---|
200000 11139168 391337048 538883744 5... |
correct output |
---|
9971613818 |
user output |
---|
2606029 |
Test 71
Verdict: ACCEPTED
input |
---|
200000 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ... |
correct output |
---|
0 |
user output |
---|
0 |