結果

問題 No.2392 二平方和
ユーザー CecilCecil
提出日時 2023-07-28 22:39:20
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 179 bytes
コンパイル時間 240 ms
コンパイル使用メモリ 82,328 KB
実行使用メモリ 54,052 KB
最終ジャッジ日時 2024-10-06 20:08:36
合計ジャッジ時間 2,484 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,464 KB
testcase_01 AC 38 ms
52,404 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 40 ms
52,600 KB
testcase_05 AC 38 ms
52,072 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 39 ms
52,488 KB
testcase_09 AC 39 ms
53,420 KB
testcase_10 AC 38 ms
52,524 KB
testcase_11 WA -
testcase_12 AC 38 ms
52,396 KB
testcase_13 WA -
testcase_14 AC 38 ms
52,384 KB
testcase_15 AC 38 ms
51,928 KB
testcase_16 AC 39 ms
52,116 KB
testcase_17 WA -
testcase_18 AC 38 ms
53,560 KB
testcase_19 AC 38 ms
53,076 KB
testcase_20 AC 39 ms
52,376 KB
testcase_21 WA -
testcase_22 AC 39 ms
52,132 KB
testcase_23 AC 39 ms
52,880 KB
testcase_24 WA -
testcase_25 AC 38 ms
52,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

P = int(input())

for i in range(1, P+1):
    if i * i <= P:
        j = (P - i*i) ** (0.5)
        if j * j + i * i == P: 
            print("Yes")
            exit()
print("No")
0