Task: | Neliöt |
Sender: | |
Submission time: | 2015-12-20 13:22:53 +0200 |
Language: | C++ |
Status: | READY |
Result: | 0 |
group | verdict | score |
---|---|---|
#1 | WRONG ANSWER | 0 |
#2 | WRONG ANSWER | 0 |
#3 | WRONG ANSWER | 0 |
test | verdict | time | group | |
---|---|---|---|---|
#1 | WRONG ANSWER | 0.18 s | 1 | details |
#2 | WRONG ANSWER | 0.20 s | 2 | details |
#3 | WRONG ANSWER | 0.30 s | 3 | details |
Code
#include<iostream> #include<vector> #include<algorithm> using namespace std; int main(void) { int64_t n; cin >> n; for(int64_t i=0;i<n;i++) { vector<int64_t> v(4); cin >> v[0] >> v[1] >> v[2] >> v[3]; sort(v.begin(),v.end()); if(v[0] == v[1] && v[0] == v[2] && v[0] == v[3]) { cout << "10-4\n"; } else if(v[0] == v[1] && v[2] == 2*v[0] && v[3] == v[2]) { cout << "10-4\n"; } else if(v[0] == v[1] && v[2] == 2*v[0] && v[3] == 3*v[0]) { cout << "10-4\n"; } else { cout << "QAQ\n"; } } }
Test details
Test 1
Group: 1
Verdict: WRONG ANSWER
input |
---|
100000 6 9 3 3 1 3 1 1 3 3 6 9 2 2 4 4 ... |
correct output |
---|
10-4 10-4 10-4 10-4 QAQ ... |
user output |
---|
10-4 QAQ 10-4 10-4 QAQ ... |
Test 2
Group: 2
Verdict: WRONG ANSWER
input |
---|
100000 270 90 90 90 372 914 438 84 304 152 152 304 238 238 714 238 ... |
correct output |
---|
10-4 QAQ 10-4 10-4 10-4 ... |
user output |
---|
QAQ QAQ 10-4 QAQ QAQ ... |
Test 3
Group: 3
Verdict: WRONG ANSWER
input |
---|
100000 821863964 821863964 821863964 ... |
correct output |
---|
10-4 10-4 QAQ 10-4 10-4 ... |
user output |
---|
10-4 QAQ QAQ 10-4 10-4 ... |