結果

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

ソースコード

diff #

p1 = input().split()
p2 = input().split()

if int(p1[1]) > int(p2[1]):
    print(p1[0])
elif int(p1[1]) < int(p2[1]):
    print(p2[0])
else:
    print(-1)
0