結果

問題 No.1556 Power Equality
ユーザー tassei903tassei903
提出日時 2021-06-25 21:22:14
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 403 bytes
コンパイル時間 158 ms
コンパイル使用メモリ 82,468 KB
実行使用メモリ 203,156 KB
最終ジャッジ日時 2024-06-25 08:06:17
合計ジャッジ時間 3,983 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
59,296 KB
testcase_01 AC 42 ms
51,712 KB
testcase_02 AC 40 ms
52,096 KB
testcase_03 AC 66 ms
148,348 KB
testcase_04 AC 39 ms
52,936 KB
testcase_05 AC 38 ms
52,820 KB
testcase_06 TLE -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
sys.setrecursionlimit(10**7)
yes = lambda :print("yes");Yes = lambda :print("Yes")
no = lambda :print("no");No = lambda :print("No")
#######################################################################

a,b = na()

if pow(a,b)==pow(b,a):
    print("Yes")
else:
    print("No")
0