結果
問題 | No.1218 Something Like a Theorem |
ユーザー |
![]() |
提出日時 | 2020-09-09 21:55:18 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 34 ms / 2,000 ms |
コード長 | 355 bytes |
コンパイル時間 | 137 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-12-16 09:18:53 |
合計ジャッジ時間 | 1,463 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 16 |
ソースコード
import sysinput=lambda: sys.stdin.readline().rstrip()n,z=map(int,input().split())if n==1:if z==1:print("No")else:print("Yes")elif n>=3:print("No")else:zz=int(z**0.5)+1A=[int(i)**2 for i in range(1,zz)]A=set(A)for x in range(1,zz):if z-x**2 in A and x**2<z-x**2:print("Yes")breakelse:continueelse:print("No")