結果

問題 No.1556 Power Equality
ユーザー Super SolenoidSuper Solenoid
提出日時 2021-07-03 22:52:31
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 97 bytes
コンパイル時間 214 ms
コンパイル使用メモリ 82,580 KB
実行使用メモリ 66,828 KB
最終ジャッジ日時 2024-06-30 14:57:37
合計ジャッジ時間 1,151 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,824 KB
testcase_01 AC 37 ms
52,084 KB
testcase_02 AC 37 ms
52,168 KB
testcase_03 RE -
testcase_04 AC 36 ms
52,128 KB
testcase_05 AC 37 ms
53,076 KB
testcase_06 AC 36 ms
53,028 KB
testcase_07 AC 37 ms
52,336 KB
testcase_08 AC 36 ms
52,096 KB
testcase_09 AC 37 ms
52,712 KB
testcase_10 AC 37 ms
52,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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