結果

問題 No.1218 Something Like a Theorem
ユーザー nohakai3nohakai3
提出日時 2022-11-18 09:27:27
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 271 bytes
コンパイル時間 142 ms
コンパイル使用メモリ 82,580 KB
実行使用メモリ 76,440 KB
最終ジャッジ日時 2024-09-19 17:56:21
合計ジャッジ時間 8,226 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
59,372 KB
testcase_01 AC 42 ms
59,700 KB
testcase_02 AC 34 ms
52,812 KB
testcase_03 AC 34 ms
53,416 KB
testcase_04 AC 36 ms
52,436 KB
testcase_05 AC 35 ms
52,368 KB
testcase_06 AC 42 ms
59,028 KB
testcase_07 AC 39 ms
59,904 KB
testcase_08 AC 39 ms
59,368 KB
testcase_09 AC 39 ms
60,088 KB
testcase_10 AC 38 ms
58,384 KB
testcase_11 AC 41 ms
59,140 KB
testcase_12 AC 38 ms
57,760 KB
testcase_13 AC 43 ms
60,556 KB
testcase_14 AC 44 ms
59,184 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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