結果

問題 No.1556 Power Equality
ユーザー Super SolenoidSuper Solenoid
提出日時 2021-07-03 22:52:31
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 97 bytes
コンパイル時間 263 ms
コンパイル使用メモリ 87,192 KB
実行使用メモリ 79,436 KB
最終ジャッジ日時 2023-09-13 04:44:50
合計ジャッジ時間 1,944 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 68 ms
71,312 KB
testcase_01 AC 69 ms
71,500 KB
testcase_02 AC 68 ms
71,024 KB
testcase_03 RE -
testcase_04 AC 68 ms
71,120 KB
testcase_05 AC 70 ms
71,616 KB
testcase_06 AC 72 ms
71,304 KB
testcase_07 AC 72 ms
71,472 KB
testcase_08 AC 67 ms
71,296 KB
testcase_09 AC 69 ms
71,492 KB
testcase_10 AC 68 ms
71,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

A, B = (int(x) for x in input().split())
if pow(A,B/A)==B:
    print('Yes')
else:
    print('No')
0