結果
問題 | No.1218 Something Like a Theorem |
ユーザー | zezero |
提出日時 | 2020-09-04 21:36:57 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 607 bytes |
コンパイル時間 | 536 ms |
コンパイル使用メモリ | 73,848 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-11-26 12:10:12 |
合計ジャッジ時間 | 1,100 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
ソースコード
#include <iostream> #include <string> #include <vector> #include <algorithm> #include <utility> #include <map> using namespace std; typedef long long ll; #define rep(i,n) for (int i = 0; i < int(n);i++) int main(){ int n,z; cin >> n >> z; if (n >= 3) cout << "NO" << endl; else if (n == 2){ z *= z; for (int x = 1; x <= 1000;x++){ if (z-x*x >= 1){ for (int tmp = 1; tmp*tmp <= z-x*x;tmp++){ if (tmp * tmp == z-x*x) { cout << "YES" << endl; return 0; } } } } } else cout << "YES" << endl; return 0; }