結果

問題 No.201 yukicoderじゃんけん
ユーザー utsumidaisuke
提出日時 2017-03-11 23:11:31
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
RE  
(最新)
AC  
(最初)
実行時間 -
コード長 161 bytes
コンパイル時間 116 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-06-24 13:43:02
合計ジャッジ時間 1,488 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 15 RE * 5
権限があれば一括ダウンロードができます

ソースコード

diff #

fls = input().split()
sls = input().split()

fp = int(fls[1])
sp = int(sls[1])

if fp > sp:
    print(fls[0])
elif fp < sp:
    print(sls[0])
else:
    print(-1)
0