結果
問題 | No.2392 二平方和 |
ユーザー | masashi kotera |
提出日時 | 2023-08-24 06:38:05 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 265 bytes |
コンパイル時間 | 303 ms |
コンパイル使用メモリ | 82,292 KB |
実行使用メモリ | 61,820 KB |
最終ジャッジ日時 | 2024-06-02 02:59:50 |
合計ジャッジ時間 | 4,261 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 140 ms
59,308 KB |
testcase_01 | WA | - |
testcase_02 | AC | 142 ms
59,520 KB |
testcase_03 | AC | 145 ms
59,648 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 144 ms
59,264 KB |
testcase_07 | AC | 144 ms
59,520 KB |
testcase_08 | WA | - |
testcase_09 | AC | 36 ms
51,840 KB |
testcase_10 | WA | - |
testcase_11 | AC | 107 ms
59,520 KB |
testcase_12 | WA | - |
testcase_13 | AC | 107 ms
59,904 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 104 ms
59,520 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | AC | 107 ms
59,264 KB |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | AC | 108 ms
59,392 KB |
testcase_25 | WA | - |
ソースコード
P = int(input()) import sys if P==2: print("Yes") sys.exit() l = [0]*(10**4) for i in range(10**4): l[i]==i**2 for i in range(2,10**4,2): for j in range(3,10**4,2): if l[i]+l[j]==P: print("Yes") sys.exit() print("No")