結果

問題 No.201 yukicoderじゃんけん
ユーザー vanilla
提出日時 2015-05-13 22:22:30
言語 Python2
(2.7.18)
結果
WA  
実行時間 -
コード長 264 bytes
コンパイル時間 629 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 6,400 KB
最終ジャッジ日時 2024-07-06 03:31:41
合計ジャッジ時間 1,424 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 17 WA * 3
権限があれば一括ダウンロードができます

ソースコード

diff #

input_line1 = raw_input()
input_line2 = raw_input()

input_line1 = input_line1.split()
input_line2 = input_line2.split()

if input_line1[1] < input_line2[1]:
    print input_line2[0]
elif input_line1[1] > input_line2[1]:
    print input_line1[0]
else:
    print -1
0