結果

問題 No.2392 二平方和
ユーザー やでな@競プロやでな@競プロ
提出日時 2023-10-10 00:55:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 387 ms / 2,000 ms
コード長 171 bytes
コンパイル時間 715 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 61,616 KB
最終ジャッジ日時 2024-09-12 23:25:46
合計ジャッジ時間 6,812 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 387 ms
60,480 KB
testcase_01 AC 39 ms
52,068 KB
testcase_02 AC 382 ms
60,132 KB
testcase_03 AC 383 ms
60,288 KB
testcase_04 AC 42 ms
59,672 KB
testcase_05 AC 39 ms
52,112 KB
testcase_06 AC 384 ms
60,944 KB
testcase_07 AC 385 ms
61,512 KB
testcase_08 AC 42 ms
58,300 KB
testcase_09 AC 38 ms
52,676 KB
testcase_10 AC 39 ms
52,348 KB
testcase_11 AC 385 ms
60,824 KB
testcase_12 AC 43 ms
59,524 KB
testcase_13 AC 384 ms
59,984 KB
testcase_14 AC 44 ms
59,364 KB
testcase_15 AC 44 ms
58,572 KB
testcase_16 AC 38 ms
52,408 KB
testcase_17 AC 382 ms
61,616 KB
testcase_18 AC 43 ms
58,424 KB
testcase_19 AC 43 ms
60,180 KB
testcase_20 AC 163 ms
60,936 KB
testcase_21 AC 384 ms
60,740 KB
testcase_22 AC 263 ms
60,084 KB
testcase_23 AC 91 ms
60,260 KB
testcase_24 AC 386 ms
60,452 KB
testcase_25 AC 225 ms
60,724 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

p = int(input())

for i in range(1,10**4+1):
    for j in range(1,10**4+1):
        if i**2+j**2 == p:
            print("Yes")
            exit()
            
print("No")
0