結果

問題 No.1218 Something Like a Theorem
ユーザー NoaSaberNoaSaber
提出日時 2021-04-30 23:46:51
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 210 bytes
コンパイル時間 290 ms
コンパイル使用メモリ 81,776 KB
実行使用メモリ 76,260 KB
最終ジャッジ日時 2024-07-19 03:56:27
合計ジャッジ時間 8,136 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
57,856 KB
testcase_01 AC 45 ms
58,496 KB
testcase_02 AC 42 ms
58,496 KB
testcase_03 AC 36 ms
51,840 KB
testcase_04 AC 39 ms
51,840 KB
testcase_05 AC 36 ms
51,584 KB
testcase_06 AC 45 ms
59,264 KB
testcase_07 AC 43 ms
59,008 KB
testcase_08 AC 43 ms
58,624 KB
testcase_09 AC 45 ms
58,496 KB
testcase_10 AC 43 ms
57,728 KB
testcase_11 AC 49 ms
58,880 KB
testcase_12 AC 42 ms
57,728 KB
testcase_13 AC 47 ms
59,008 KB
testcase_14 AC 49 ms
58,368 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

N,Z=map(int,input().split())
if N==1 and 2<=Z:
    print("Yes")
    exit()
for x in range(1,1001):
    for y in range(1,1001):
        if x**N+y**N==Z**N:
            print("Yes")
            exit()
print("No")
0