結果

問題 No.1218 Something Like a Theorem
ユーザー MottchanMottchan
提出日時 2023-03-26 19:40:08
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 274 bytes
コンパイル時間 314 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 75,776 KB
最終ジャッジ日時 2024-09-19 09:57:47
合計ジャッジ時間 2,094 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
60,544 KB
testcase_01 AC 52 ms
66,816 KB
testcase_02 AC 44 ms
59,776 KB
testcase_03 AC 44 ms
60,288 KB
testcase_04 AC 52 ms
66,816 KB
testcase_05 WA -
testcase_06 AC 45 ms
60,416 KB
testcase_07 AC 61 ms
70,016 KB
testcase_08 AC 60 ms
69,376 KB
testcase_09 AC 55 ms
67,328 KB
testcase_10 AC 58 ms
69,376 KB
testcase_11 AC 44 ms
60,032 KB
testcase_12 AC 46 ms
60,288 KB
testcase_13 AC 45 ms
60,416 KB
testcase_14 AC 76 ms
75,776 KB
testcase_15 AC 97 ms
75,392 KB
testcase_16 AC 101 ms
75,520 KB
testcase_17 AC 107 ms
75,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,z=map(int,input().split())
a=0
for x in range(1,10**5):
    for y in range(x,10**4):
        if x ** n + y ** n == z ** n:
            a+=1
            break        
        elif x ** n + y ** n > z ** n:
            break

if a > 0:
    print('Yes')
else:
    print('No')
0