結果

問題 No.1218 Something Like a Theorem
ユーザー umashi-pan-tnokk093numashi-pan-tnokk093n
提出日時 2020-09-04 21:50:16
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 200 bytes
コンパイル時間 365 ms
コンパイル使用メモリ 82,108 KB
実行使用メモリ 113,080 KB
最終ジャッジ日時 2024-11-26 12:35:21
合計ジャッジ時間 4,736 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 40 ms
59,252 KB
testcase_02 AC 35 ms
52,220 KB
testcase_03 AC 36 ms
53,040 KB
testcase_04 AC 39 ms
57,996 KB
testcase_05 TLE -
testcase_06 AC 36 ms
53,232 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 42 ms
60,040 KB
testcase_10 WA -
testcase_11 AC 36 ms
52,760 KB
testcase_12 WA -
testcase_13 AC 36 ms
52,516 KB
testcase_14 AC 36 ms
52,512 KB
testcase_15 AC 36 ms
52,352 KB
testcase_16 AC 36 ms
52,932 KB
testcase_17 AC 36 ms
113,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,z=map(int,input().split())
ans=0
for x in range(1,z+1):
    for y in range(x,z-x+1):
        if (x**n+y**n)==z**n:
            ans+=1
            break
if ans:
    print('Yes')
else:
    print('No')
0