結果

問題 No.201 yukicoderじゃんけん
ユーザー _KingdomOfMoray
提出日時 2019-11-25 10:44:50
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
RE  
(最新)
AC  
(最初)
実行時間 -
コード長 202 bytes
コンパイル時間 129 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-10-12 21:38:51
合計ジャッジ時間 1,456 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 15 RE * 5
権限があれば一括ダウンロードができます

ソースコード

diff #

a = input().split()
b = input().split()

a_score = int(a[1])
b_score = int(b[1])

res = 0
if a_score > b_score:
    res = a[0]
elif a_score < b_score:
    res = b[0]
else:
    res = '-1'
    
print(res)
0