結果

問題 No.1218 Something Like a Theorem
ユーザー persimmon-persimmonpersimmon-persimmon
提出日時 2021-03-19 12:54:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 42 ms / 2,000 ms
コード長 281 bytes
コンパイル時間 381 ms
コンパイル使用メモリ 82,308 KB
実行使用メモリ 61,352 KB
最終ジャッジ日時 2024-11-18 07:28:41
合計ジャッジ時間 1,948 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,360 KB
testcase_01 AC 34 ms
52,288 KB
testcase_02 AC 34 ms
52,192 KB
testcase_03 AC 34 ms
51,952 KB
testcase_04 AC 34 ms
51,756 KB
testcase_05 AC 32 ms
53,364 KB
testcase_06 AC 34 ms
53,988 KB
testcase_07 AC 40 ms
61,352 KB
testcase_08 AC 40 ms
61,180 KB
testcase_09 AC 42 ms
60,256 KB
testcase_10 AC 39 ms
60,624 KB
testcase_11 AC 33 ms
51,868 KB
testcase_12 AC 34 ms
52,672 KB
testcase_13 AC 34 ms
52,340 KB
testcase_14 AC 34 ms
52,176 KB
testcase_15 AC 34 ms
52,372 KB
testcase_16 AC 33 ms
52,680 KB
testcase_17 AC 34 ms
52,116 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,z=map(int,input().split())
if n==1:
  if z==1:
    print('No')
  else:
    print('Yes')
elif n==2:
  for x in range(z):
    for y in range(z):
      if x**2+y**2==z**2:
        print('Yes')
        exit()
      if x**2+y**2>z**2:
        break
  print('No')

else:
  print('No')
0