結果

問題 No.201 yukicoderじゃんけん
ユーザー TawaraTawara
提出日時 2015-08-04 22:41:14
言語 Python2
(2.7.18)
結果
WA  
実行時間 -
コード長 122 bytes
コンパイル時間 133 ms
コンパイル使用メモリ 6,664 KB
実行使用メモリ 6,056 KB
最終ジャッジ日時 2023-09-25 01:09:36
合計ジャッジ時間 1,393 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
6,016 KB
testcase_01 AC 12 ms
5,860 KB
testcase_02 AC 11 ms
5,964 KB
testcase_03 AC 11 ms
6,032 KB
testcase_04 WA -
testcase_05 AC 11 ms
5,864 KB
testcase_06 AC 11 ms
5,900 KB
testcase_07 AC 11 ms
6,012 KB
testcase_08 AC 11 ms
6,056 KB
testcase_09 AC 10 ms
5,996 KB
testcase_10 AC 11 ms
6,012 KB
testcase_11 AC 11 ms
5,944 KB
testcase_12 AC 11 ms
5,984 KB
testcase_13 AC 11 ms
5,984 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 11 ms
6,028 KB
testcase_17 AC 11 ms
5,992 KB
testcase_18 AC 11 ms
5,944 KB
testcase_19 AC 11 ms
6,004 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a = raw_input().split(" ")
b = raw_input().split(" ")
r = -1
if a[1] > b[1]:
	r = a[0]
elif a[1] < b[1]:
	r = b[0]
print r
0