結果

問題 No.2392 二平方和
ユーザー Akijin_007Akijin_007
提出日時 2023-07-29 17:39:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 195 ms / 2,000 ms
コード長 359 bytes
コンパイル時間 246 ms
コンパイル使用メモリ 82,288 KB
実行使用メモリ 63,624 KB
最終ジャッジ日時 2024-10-08 05:34:40
合計ジャッジ時間 2,837 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,232 KB
testcase_01 AC 33 ms
52,488 KB
testcase_02 AC 35 ms
53,372 KB
testcase_03 AC 36 ms
52,404 KB
testcase_04 AC 35 ms
52,432 KB
testcase_05 AC 34 ms
52,184 KB
testcase_06 AC 36 ms
53,256 KB
testcase_07 AC 35 ms
51,984 KB
testcase_08 AC 35 ms
52,636 KB
testcase_09 AC 38 ms
52,452 KB
testcase_10 AC 35 ms
52,404 KB
testcase_11 AC 35 ms
52,496 KB
testcase_12 AC 36 ms
52,360 KB
testcase_13 AC 36 ms
53,368 KB
testcase_14 AC 35 ms
52,496 KB
testcase_15 AC 36 ms
52,144 KB
testcase_16 AC 35 ms
52,292 KB
testcase_17 AC 35 ms
53,048 KB
testcase_18 AC 35 ms
53,252 KB
testcase_19 AC 35 ms
52,276 KB
testcase_20 AC 141 ms
61,300 KB
testcase_21 AC 182 ms
63,624 KB
testcase_22 AC 180 ms
62,512 KB
testcase_23 AC 90 ms
61,968 KB
testcase_24 AC 195 ms
63,192 KB
testcase_25 AC 181 ms
61,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#int(input())
#map(int, input().split())
#list(map(int, input().split()))

P = int(input())

f = 0
for i in range(1, P+1):
    if i ** 2 > P or f == 1:
        break
    for j in range(i, P+1):
        if i ** 2 + j ** 2 > P:
            break
        if i ** 2 + j ** 2 == P:
            f = 1
            break

if f:
    print("Yes")
else:
    print("No")
0