結果
問題 |
No.1218 Something Like a Theorem
|
ユーザー |
|
提出日時 | 2020-09-09 17:57:49 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 22 ms / 2,000 ms |
コード長 | 356 bytes |
コンパイル時間 | 2,041 ms |
コンパイル使用メモリ | 192,480 KB |
最終ジャッジ日時 | 2025-01-14 08:55:52 |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 16 |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:8:23: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 8 | int n,z; scanf("%d%d",&n,&z); | ~~~~~^~~~~~~~~~~~~~
ソースコード
#include <bits/stdc++.h> #define rep(i,n) for(int i=0;i<(n);i++) using namespace std; int main(){ int n,z; scanf("%d%d",&n,&z); if(n>=3){ puts("No"); } else if(n==1){ puts(z>=2?"Yes":"No"); } else{ bool ok=false; for(int x=1;x<=1000;x++) for(int y=1;y<=1000;y++) { if(x*x+y*y==z*z) ok=true; } puts(ok?"Yes":"No"); } return 0; }