結果

問題 No.1218 Something Like a Theorem
ユーザー nohakai3nohakai3
提出日時 2022-11-18 09:30:05
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 277 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 82,524 KB
実行使用メモリ 75,848 KB
最終ジャッジ日時 2024-09-19 17:57:33
合計ジャッジ時間 3,181 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,492 KB
testcase_01 AC 38 ms
59,792 KB
testcase_02 AC 34 ms
51,900 KB
testcase_03 AC 33 ms
52,192 KB
testcase_04 AC 34 ms
52,852 KB
testcase_05 AC 34 ms
52,024 KB
testcase_06 AC 37 ms
59,228 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 40 ms
59,412 KB
testcase_10 WA -
testcase_11 AC 41 ms
59,428 KB
testcase_12 AC 36 ms
58,328 KB
testcase_13 AC 40 ms
60,692 KB
testcase_14 AC 40 ms
59,172 KB
testcase_15 AC 560 ms
75,724 KB
testcase_16 AC 592 ms
75,760 KB
testcase_17 AC 622 ms
75,848 KB
権限があれば一括ダウンロードができます

ソースコード

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,500):
        for j in range(1,500):
            if pow(i,n)+pow(j,n)==c:
                print("Yes")
                exit()
    print("No")
0