結果

問題 No.1218 Something Like a Theorem
ユーザー 👑 KazunKazun
提出日時 2020-09-04 21:40:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 86 ms / 2,000 ms
コード長 292 bytes
コンパイル時間 197 ms
コンパイル使用メモリ 82,368 KB
実行使用メモリ 135,352 KB
最終ジャッジ日時 2024-11-26 12:13:54
合計ジャッジ時間 2,103 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 16
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import sqrt

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

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

X=[x*x for x in range(1,10**3+1)]
Y=[a+b for a in X for b in X]

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