結果

問題 No.1218 Something Like a Theorem
ユーザー nehan_der_thalnehan_der_thal
提出日時 2020-09-04 22:11:26
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 312 bytes
コンパイル時間 210 ms
コンパイル使用メモリ 82,452 KB
実行使用メモリ 53,504 KB
最終ジャッジ日時 2024-11-26 12:59:32
合計ジャッジ時間 1,580 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,356 KB
testcase_01 AC 36 ms
52,836 KB
testcase_02 WA -
testcase_03 AC 36 ms
51,752 KB
testcase_04 AC 36 ms
52,292 KB
testcase_05 AC 38 ms
52,644 KB
testcase_06 WA -
testcase_07 AC 38 ms
53,504 KB
testcase_08 AC 39 ms
52,268 KB
testcase_09 WA -
testcase_10 AC 39 ms
53,132 KB
testcase_11 WA -
testcase_12 AC 35 ms
52,892 KB
testcase_13 AC 36 ms
52,452 KB
testcase_14 AC 36 ms
52,800 KB
testcase_15 AC 36 ms
53,332 KB
testcase_16 AC 36 ms
52,628 KB
testcase_17 AC 36 ms
52,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, z = map(int, input().split())
if n == 1:
    print("Yes")
elif n == 2:
    z = z ** 2
    vs = set()
    for x in range(10**5):
        x = x*x
        if x > z:
            print("No")
            break
        vs.add(x)
        if z-x in vs:
            print("Yes")
            break
else:
    print("No")
0