結果

問題 No.1556 Power Equality
ユーザー raven7959raven7959
提出日時 2021-08-13 13:17:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 39 ms / 2,000 ms
コード長 150 bytes
コンパイル時間 336 ms
コンパイル使用メモリ 82,444 KB
実行使用メモリ 53,556 KB
最終ジャッジ日時 2024-10-03 03:42:01
合計ジャッジ時間 1,278 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,524 KB
testcase_01 AC 35 ms
53,248 KB
testcase_02 AC 36 ms
52,604 KB
testcase_03 AC 35 ms
53,556 KB
testcase_04 AC 36 ms
52,088 KB
testcase_05 AC 36 ms
52,148 KB
testcase_06 AC 36 ms
51,960 KB
testcase_07 AC 34 ms
52,744 KB
testcase_08 AC 39 ms
52,608 KB
testcase_09 AC 35 ms
52,892 KB
testcase_10 AC 35 ms
52,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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