Task: | Cent saving |
Sender: | Oispa Kaljaa |
Submission time: | 2016-05-28 12:52:39 +0300 |
Language: | C++ |
Status: | READY |
Result: | WRONG ANSWER |
test | verdict | time | |
---|---|---|---|
#1 | WRONG ANSWER | 0.06 s | details |
#2 | WRONG ANSWER | 0.05 s | details |
Code
#include <bits/stdc++.h> using namespace std; int main(){ cin.sync_with_stdio(0); cin.tie(0); int tests; cin >> tests; int p[101010]; while(tests--){ int n; cin >> n; int sum = 0; for(int i = 0; i < n; i++){ cin >> p[i]; sum+=p[i]; } int c[5] = {0}; for(int i = 0; i < n; i++) c[p[i]%5]++; int mi34 = min(c[3], c[4]); sum-=2*mi34; c[3]-=mi34; c[4]-=mi34; sum-=2*c[2]; sum-=c[1]; sum+=2*c[3]; sum+=c[4]; cout << sum << endl; } return 0; }
Test details
Test 1
Verdict: WRONG ANSWER
input |
---|
100 1000 528433894 255789530 559301042 ... |
correct output |
---|
475191144965 460688647850 478543444030 475238936090 456736521510 ... |
user output |
---|
-1550224861 1127147203 1802074204 -1502433716 1469988154 ... Truncated |
Test 2
Verdict: WRONG ANSWER
input |
---|
1 100000 666086355 190481330 514353517 ... |
correct output |
---|
47176864928795 |
user output |
---|
944149961 |