結果

問題 No.1556 Power Equality
ユーザー Ryuki87241978Ryuki87241978
提出日時 2022-07-12 02:08:51
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 80 bytes
コンパイル時間 2,279 ms
コンパイル使用メモリ 86,716 KB
実行使用メモリ 71,512 KB
最終ジャッジ日時 2023-09-05 00:28:38
合計ジャッジ時間 3,045 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 66 ms
71,284 KB
testcase_01 AC 67 ms
71,360 KB
testcase_02 AC 67 ms
71,376 KB
testcase_03 AC 68 ms
71,212 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 68 ms
71,512 KB
testcase_07 AC 68 ms
71,156 KB
testcase_08 AC 67 ms
71,492 KB
testcase_09 AC 66 ms
71,248 KB
testcase_10 AC 67 ms
71,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a,b = map(int,input().split())
if a == b:
    print("Yes")
else:
    print("No")
0