結果

問題 No.1218 Something Like a Theorem
ユーザー KazunKazun
提出日時 2020-09-04 21:33:35
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 224 bytes
コンパイル時間 257 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 821,440 KB
最終ジャッジ日時 2024-11-26 12:04:04
合計ジャッジ時間 5,380 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
54,124 KB
testcase_01 AC 37 ms
51,840 KB
testcase_02 AC 36 ms
51,840 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 TLE -
testcase_06 AC 81 ms
51,712 KB
testcase_07 AC 98 ms
132,480 KB
testcase_08 AC 99 ms
132,736 KB
testcase_09 AC 96 ms
132,224 KB
testcase_10 AC 89 ms
132,736 KB
testcase_11 AC 37 ms
51,712 KB
testcase_12 AC 37 ms
50,944 KB
testcase_13 AC 38 ms
51,072 KB
testcase_14 AC 37 ms
51,200 KB
testcase_15 AC 37 ms
50,816 KB
testcase_16 AC 41 ms
51,712 KB
testcase_17 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import sqrt

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

if n>=3:
    print("No")
    exit()

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