結果

問題 No.1218 Something Like a Theorem
ユーザー KazunKazun
提出日時 2020-09-04 21:35:54
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 297 bytes
コンパイル時間 399 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 744,384 KB
最終ジャッジ日時 2024-11-26 12:08:42
合計ジャッジ時間 5,613 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
57,216 KB
testcase_01 AC 40 ms
52,352 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 TLE -
testcase_06 AC 351 ms
51,840 KB
testcase_07 AC 135 ms
133,760 KB
testcase_08 AC 91 ms
134,036 KB
testcase_09 AC 85 ms
134,812 KB
testcase_10 AC 86 ms
135,376 KB
testcase_11 AC 39 ms
53,104 KB
testcase_12 AC 36 ms
52,440 KB
testcase_13 AC 36 ms
52,696 KB
testcase_14 AC 35 ms
52,540 KB
testcase_15 AC 41 ms
53,052 KB
testcase_16 AC 36 ms
52,516 KB
testcase_17 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import sqrt

n,z=map(int,input().split())

if n>=3:
    print("No")
    exit()
elif n==1 and z==1:
    print("No")
elif n==1 and z>=2:
    print("Yes")

X=[]
x=1
while x*x<z*z:
    X.append(x*x)
    x+=1

D=[a+b for a in X for b in X]

if z*z in D:
    print("Yes")
else:
    print("No")
0