結果

問題 No.1556 Power Equality
ユーザー 👑 H20H20
提出日時 2021-06-25 23:08:58
言語 PyPy3
(7.3.15)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 115 bytes
コンパイル時間 841 ms
コンパイル使用メモリ 87,260 KB
実行使用メモリ 71,652 KB
最終ジャッジ日時 2023-09-07 15:54:22
合計ジャッジ時間 2,340 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 69 ms
71,372 KB
testcase_01 AC 71 ms
70,908 KB
testcase_02 AC 71 ms
71,304 KB
testcase_03 WA -
testcase_04 AC 71 ms
71,084 KB
testcase_05 AC 70 ms
70,908 KB
testcase_06 AC 72 ms
71,324 KB
testcase_07 AC 73 ms
70,948 KB
testcase_08 AC 70 ms
71,264 KB
testcase_09 AC 70 ms
71,108 KB
testcase_10 AC 71 ms
71,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

A,B = map(int, input().split())
mod = 10**9+7
if pow(A,B,mod)==pow(B,A,mod):
    print('Yes')
else:
    print('No')
0