結果
問題 | No.2392 二平方和 |
ユーザー |
|
提出日時 | 2023-07-29 09:25:09 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 77 ms / 2,000 ms |
コード長 | 530 bytes |
コンパイル時間 | 1,537 ms |
コンパイル使用メモリ | 167,404 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-07 13:23:29 |
合計ジャッジ時間 | 3,230 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 26 |
ソースコード
#include <bits/stdc++.h> #define rep(i, n) for (ll i = 0; i < (ll)(n); i++) #define all(x) (x).begin(), (x).end() #define Ye cout<<"Yes"<<endl #define YE cout<<"YES"<<endl #define No cout<<"No"<<endl #define NO cout<<"NO"<<endl using namespace std; using ll=long long; int main(void){ ll P,bol=0; cin>>P; rep(i,10000){ rep(j,10000){ if((i+1)*(i+1)+(j+1)*(j+1)==P){ bol++; break; } } if(bol==1)break; } if(bol==1)Ye; else No; }