結果
問題 | No.2392 二平方和 |
ユーザー | cubinglover |
提出日時 | 2023-07-28 21:23:14 |
言語 | C++17(gcc12) (gcc 12.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 306 bytes |
コンパイル時間 | 783 ms |
コンパイル使用メモリ | 78,936 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-06 17:23:45 |
合計ジャッジ時間 | 1,513 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 26 |
ソースコード
#include<iostream> #include<cmath> using namespace std; struct edge{ int to, a, b; }; int main(){ long long p;cin>>p; for(long long i=1;i<10000;++i){ long long x=p-i*i; if(x<0)break; long long t=sqrtl(x); if(t*t==x){ cout<<"Yes"<<endl; return 0; } } cout<<"No"<<endl; return 0; }