結果

問題 No.1218 Something Like a Theorem
ユーザー freecss00freecss00
提出日時 2020-09-04 22:21:33
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 365 bytes
コンパイル時間 89 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-11-26 14:22:12
合計ジャッジ時間 3,937 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 12 WA * 4
権限があれば一括ダウンロードができます

ソースコード

diff #

n,z = map(int, input().split())
if n == 1:
    if z != 1:
        print('Yes')
    else:
        print('No')
    print('Yes')
elif n == 2:
    found = False
    for x in range(1,1001):
        for y in range(1,1001):
            if x*x + y*y == z*z:
                found = True
    if found:
        print('Yes')
    else:
        print('No')
else:
    print('No')
0