結果

問題 No.1218 Something Like a Theorem
ユーザー mesame3993mesame3993
提出日時 2021-11-18 21:23:56
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 484 bytes
コンパイル時間 328 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 225,024 KB
最終ジャッジ日時 2024-06-08 11:29:19
合計ジャッジ時間 3,442 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 197 ms
224,256 KB
testcase_01 AC 36 ms
51,584 KB
testcase_02 AC 34 ms
51,968 KB
testcase_03 AC 33 ms
51,456 KB
testcase_04 AC 33 ms
52,096 KB
testcase_05 AC 33 ms
51,456 KB
testcase_06 AC 217 ms
224,128 KB
testcase_07 AC 200 ms
224,512 KB
testcase_08 AC 205 ms
224,256 KB
testcase_09 WA -
testcase_10 AC 198 ms
224,512 KB
testcase_11 WA -
testcase_12 AC 198 ms
224,128 KB
testcase_13 AC 36 ms
51,712 KB
testcase_14 AC 36 ms
51,456 KB
testcase_15 AC 36 ms
51,712 KB
testcase_16 AC 34 ms
51,712 KB
testcase_17 AC 33 ms
51,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
  from sys import stdin
  readline=stdin.readline
  #n = int(readline())
  #s = input()
  n,z = map(int, readline().split())
  #A = list(map(int, readline().split()))
  if n >= 3:
    print('No')
  elif n == 1:
    if z >= 2:
      print('Yes')
    else:
      print('No')
  else:
    st = set(y for y in range(1, 10**6))
    z *= z
    for x in range(1, 10**6):
      x *- x
      if z-x in st:
        print('Yes')
        break
    else:
      print('No')

  
  
main()
0