結果

問題 No.1218 Something Like a Theorem
ユーザー KeroruKeroru
提出日時 2020-09-13 20:02:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 38 ms / 2,000 ms
コード長 170 bytes
コンパイル時間 246 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 53,448 KB
最終ジャッジ日時 2024-06-13 04:26:45
合計ジャッジ時間 2,108 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,496 KB
testcase_01 AC 38 ms
53,160 KB
testcase_02 AC 35 ms
52,464 KB
testcase_03 AC 35 ms
53,012 KB
testcase_04 AC 35 ms
52,316 KB
testcase_05 AC 34 ms
53,448 KB
testcase_06 AC 37 ms
52,004 KB
testcase_07 AC 35 ms
52,560 KB
testcase_08 AC 36 ms
53,092 KB
testcase_09 AC 37 ms
52,636 KB
testcase_10 AC 37 ms
52,812 KB
testcase_11 AC 36 ms
53,056 KB
testcase_12 AC 36 ms
53,312 KB
testcase_13 AC 35 ms
51,956 KB
testcase_14 AC 35 ms
52,176 KB
testcase_15 AC 34 ms
53,220 KB
testcase_16 AC 34 ms
53,324 KB
testcase_17 AC 35 ms
51,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,z=map(int,input().split())
k=1
if n==1:
    k=z==1
else:
    a=[x**n for x in range(1,z+1)]
    for x in a:
        if z**n-x in a:
            k=0
print('YNeos'[k::2])
0