結果

問題 No.2392 二平方和
ユーザー sotanishysotanishy
提出日時 2023-07-28 21:25:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 45 ms / 2,000 ms
コード長 198 bytes
コンパイル時間 379 ms
コンパイル使用メモリ 82,352 KB
実行使用メモリ 60,380 KB
最終ジャッジ日時 2024-10-06 17:30:58
合計ジャッジ時間 2,504 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,748 KB
testcase_01 AC 38 ms
52,952 KB
testcase_02 AC 38 ms
52,092 KB
testcase_03 AC 38 ms
52,312 KB
testcase_04 AC 38 ms
52,444 KB
testcase_05 AC 38 ms
52,488 KB
testcase_06 AC 38 ms
52,072 KB
testcase_07 AC 39 ms
52,488 KB
testcase_08 AC 38 ms
52,236 KB
testcase_09 AC 38 ms
51,980 KB
testcase_10 AC 38 ms
53,384 KB
testcase_11 AC 38 ms
53,136 KB
testcase_12 AC 38 ms
52,132 KB
testcase_13 AC 38 ms
53,136 KB
testcase_14 AC 39 ms
53,212 KB
testcase_15 AC 38 ms
52,096 KB
testcase_16 AC 37 ms
52,684 KB
testcase_17 AC 39 ms
51,884 KB
testcase_18 AC 39 ms
52,316 KB
testcase_19 AC 39 ms
52,880 KB
testcase_20 AC 44 ms
59,468 KB
testcase_21 AC 44 ms
60,100 KB
testcase_22 AC 44 ms
60,380 KB
testcase_23 AC 45 ms
60,232 KB
testcase_24 AC 45 ms
60,200 KB
testcase_25 AC 45 ms
59,740 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

P = int(input())
i = 1
while i*i < P:
    j2 = P-i*i
    j = int(j2**0.5)
    if (j+1)*(j+1) <= P-i*i:
        j += 1
    if i*i+j*j == P:
        print("Yes")
        exit()
    i += 1
print("No")
0