結果

問題 No.1556 Power Equality
ユーザー Takuya NoguchiTakuya Noguchi
提出日時 2021-06-30 20:23:55
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 89 bytes
コンパイル時間 141 ms
コンパイル使用メモリ 82,724 KB
実行使用メモリ 205,284 KB
最終ジャッジ日時 2024-06-27 06:29:49
合計ジャッジ時間 4,080 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
56,960 KB
testcase_01 AC 39 ms
51,456 KB
testcase_02 AC 39 ms
51,584 KB
testcase_03 AC 68 ms
147,968 KB
testcase_04 AC 39 ms
51,712 KB
testcase_05 AC 37 ms
51,584 KB
testcase_06 TLE -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

A, B = map(int, input().split())

if A**B == B**A:
    print('Yes')
else:
    print('No')
0