結果

問題 No.1699 Unfair RPS
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2021-10-08 21:54:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 69 ms / 2,000 ms
コード長 85 bytes
コンパイル時間 1,099 ms
コンパイル使用メモリ 86,728 KB
実行使用メモリ 70,768 KB
最終ジャッジ日時 2023-09-30 09:55:19
合計ジャッジ時間 1,816 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
70,652 KB
testcase_01 AC 62 ms
70,660 KB
testcase_02 AC 63 ms
70,768 KB
testcase_03 AC 61 ms
70,676 KB
testcase_04 AC 62 ms
70,628 KB
testcase_05 AC 64 ms
70,560 KB
testcase_06 AC 61 ms
70,360 KB
testcase_07 AC 69 ms
70,216 KB
testcase_08 AC 63 ms
70,224 KB
testcase_09 AC 58 ms
70,220 KB
testcase_10 AC 60 ms
70,564 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

"""

"""

b,c = input().split()

if b == c:
    print ("Yes")
else:
    print ("No")
0