Task: | Neliöt |
Sender: | Laakeri |
Submission time: | 2020-11-06 22:39:39 +0200 |
Language: | C++ (C++11) |
Status: | READY |
Result: | 100 |
group | verdict | score |
---|---|---|
#1 | ACCEPTED | 28 |
#2 | ACCEPTED | 72 |
test | verdict | time | group | |
---|---|---|---|---|
#1 | ACCEPTED | 0.01 s | 1, 2 | details |
#2 | ACCEPTED | 0.01 s | 1, 2 | details |
#3 | ACCEPTED | 0.03 s | 2 | details |
Code
#include <bits/stdc++.h> using namespace std; bool isq(int x) { if (x < 0) return false; if (x <= 1) return true; double y=sqrt(x); int a=y; int b=y-1; int c=y+1; return a*a==x||b*b==x||c*c==x; } int main() { int tcs; cin>>tcs; for (int i=0;i<tcs;i++){ int x; cin>>x; int f=0; for (int y=0;y*y<=x;y++){ if (isq(x-y*y)) { f=1; } } if (f){ cout<<"YES"<<endl; }else { cout<<"NO"<<endl; } } }
Test details
Test 1
Group: 1, 2
Verdict: ACCEPTED
input |
---|
100 1 2 3 4 ... |
correct output |
---|
YES YES NO YES YES ... |
user output |
---|
YES YES NO YES YES ... Truncated |
Test 2
Group: 1, 2
Verdict: ACCEPTED
input |
---|
100 522 419 402 969 ... |
correct output |
---|
YES NO NO NO NO ... |
user output |
---|
YES NO NO NO NO ... Truncated |
Test 3
Group: 2
Verdict: ACCEPTED
input |
---|
100 575833539 744851460 436154655 655319365 ... |
correct output |
---|
NO NO NO NO NO ... |
user output |
---|
NO NO NO NO NO ... Truncated |