Task: | Neliöt |
Sender: | |
Submission time: | 2015-12-20 13:26:50 +0200 |
Language: | C++ |
Status: | READY |
Result: | 100 |
group | verdict | score |
---|---|---|
#1 | ACCEPTED | 27 |
#2 | ACCEPTED | 41 |
#3 | ACCEPTED | 32 |
test | verdict | time | group | |
---|---|---|---|---|
#1 | ACCEPTED | 0.17 s | 1 | details |
#2 | ACCEPTED | 0.19 s | 2 | details |
#3 | ACCEPTED | 0.28 s | 3 | details |
Code
#include <iostream>#include <algorithm>using namespace std;int ss[4];int main() {int t;cin>>t;while(t--) {for(int i=0; i<4; ++i) cin>>ss[i];sort(ss,ss+4);bool ok = 0;if (ss[0] == ss[1]) {if (2*ss[1]==ss[2]) {if (ss[1]+ss[2]==ss[3]) {ok=1;}}if (ss[2]==ss[3]) {if (2*ss[1]==ss[2] || ss[1]==ss[2]) {ok=1;}}if (ss[1]==ss[2]) {if (ss[3]==ss[0]*3) {ok=1;}}}if (ok) {cout<<"10-4\n";} else {cout<<"QAQ\n";}}}
Test details
Test 1
Group: 1
Verdict: ACCEPTED
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 10-4 10-4 10-4 QAQ ... |
Test 2
Group: 2
Verdict: ACCEPTED
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 |
---|
10-4 QAQ 10-4 10-4 10-4 ... |
Test 3
Group: 3
Verdict: ACCEPTED
input |
---|
100000 821863964 821863964 821863964 ... |
correct output |
---|
10-4 10-4 QAQ 10-4 10-4 ... |
user output |
---|
10-4 10-4 QAQ 10-4 10-4 ... |