結果

問題 No.1218 Something Like a Theorem
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2020-09-04 22:33:18
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 270 bytes
コンパイル時間 327 ms
コンパイル使用メモリ 81,968 KB
実行使用メモリ 127,868 KB
最終ジャッジ日時 2024-11-26 15:43:55
合計ジャッジ時間 15,378 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
59,260 KB
testcase_01 TLE -
testcase_02 AC 37 ms
59,776 KB
testcase_03 AC 37 ms
113,472 KB
testcase_04 AC 37 ms
59,660 KB
testcase_05 AC 37 ms
127,820 KB
testcase_06 AC 37 ms
58,932 KB
testcase_07 AC 623 ms
60,080 KB
testcase_08 AC 812 ms
60,356 KB
testcase_09 TLE -
testcase_10 AC 324 ms
60,432 KB
testcase_11 AC 36 ms
53,020 KB
testcase_12 AC 38 ms
53,192 KB
testcase_13 AC 46 ms
60,096 KB
testcase_14 TLE -
testcase_15 TLE -
testcase_16 AC 38 ms
52,360 KB
testcase_17 AC 37 ms
127,868 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,z = map(int,input().split())
if n == 1:
    if z - 1 > 0:
        print("Yes")
    else:
        print("No")
    exit()
z = z**n
for i in range(1,z):
    for j in range(1,z):
        if pow(i,n) + pow(j,n) == z:
            print("Yes")
            exit()
print("No")
0