結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
59,280 KB
testcase_01 AC 44 ms
59,440 KB
testcase_02 AC 34 ms
52,104 KB
testcase_03 AC 33 ms
52,624 KB
testcase_04 AC 33 ms
51,996 KB
testcase_05 AC 35 ms
51,940 KB
testcase_06 AC 43 ms
59,616 KB
testcase_07 AC 40 ms
59,836 KB
testcase_08 AC 41 ms
60,044 KB
testcase_09 AC 43 ms
59,860 KB
testcase_10 AC 39 ms
59,100 KB
testcase_11 AC 43 ms
60,108 KB
testcase_12 AC 38 ms
58,892 KB
testcase_13 AC 43 ms
59,768 KB
testcase_14 AC 44 ms
59,932 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 pow(i,n)+pow(j,n)==c:
                print("Yes")
                exit()
    print("No")
0