結果

問題 No.1218 Something Like a Theorem
ユーザー O2MTO2MT
提出日時 2021-02-17 21:05:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 91 ms / 2,000 ms
コード長 181 bytes
コンパイル時間 308 ms
コンパイル使用メモリ 82,088 KB
実行使用メモリ 60,316 KB
最終ジャッジ日時 2024-09-14 06:27:41
合計ジャッジ時間 2,051 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,420 KB
testcase_01 AC 91 ms
58,704 KB
testcase_02 AC 38 ms
52,296 KB
testcase_03 AC 39 ms
52,080 KB
testcase_04 AC 39 ms
52,400 KB
testcase_05 AC 39 ms
54,184 KB
testcase_06 AC 39 ms
52,372 KB
testcase_07 AC 48 ms
60,316 KB
testcase_08 AC 49 ms
59,712 KB
testcase_09 AC 90 ms
59,384 KB
testcase_10 AC 43 ms
58,220 KB
testcase_11 AC 38 ms
52,004 KB
testcase_12 AC 39 ms
51,940 KB
testcase_13 AC 39 ms
53,060 KB
testcase_14 AC 47 ms
58,528 KB
testcase_15 AC 67 ms
59,292 KB
testcase_16 AC 38 ms
53,168 KB
testcase_17 AC 38 ms
52,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,z = map(int,input().split())
N = z**n
ans = "No"
for i in range(1,N):
    if (i**(1/n)).is_integer() and ((N-i)**(1/n)).is_integer():
        ans = "Yes"
        break

print(ans)
0