結果

問題 No.1699 Unfair RPS
ユーザー IgrmiIgrmi
提出日時 2021-10-10 03:25:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 75 ms / 2,000 ms
コード長 65 bytes
コンパイル時間 279 ms
コンパイル使用メモリ 87,208 KB
実行使用メモリ 71,216 KB
最終ジャッジ日時 2023-10-11 19:49:03
合計ジャッジ時間 1,900 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
71,116 KB
testcase_01 AC 75 ms
70,988 KB
testcase_02 AC 75 ms
70,992 KB
testcase_03 AC 75 ms
71,036 KB
testcase_04 AC 73 ms
71,072 KB
testcase_05 AC 74 ms
71,216 KB
testcase_06 AC 75 ms
70,860 KB
testcase_07 AC 75 ms
71,084 KB
testcase_08 AC 74 ms
71,208 KB
testcase_09 AC 74 ms
71,116 KB
testcase_10 AC 75 ms
70,932 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

A, B = map(int, input().split())
print('Yes' if A == B else 'No')
0