結果

問題 No.201 yukicoderじゃんけん
ユーザー akihito0000akihito0000
提出日時 2016-09-12 18:39:20
言語 Python2
(2.7.18)
結果
AC  
実行時間 13 ms / 5,000 ms
コード長 207 bytes
コンパイル時間 212 ms
コンパイル使用メモリ 6,648 KB
実行使用メモリ 6,176 KB
最終ジャッジ日時 2023-08-10 19:13:10
合計ジャッジ時間 1,621 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
6,004 KB
testcase_01 AC 10 ms
6,048 KB
testcase_02 AC 11 ms
5,976 KB
testcase_03 AC 10 ms
6,040 KB
testcase_04 AC 10 ms
6,124 KB
testcase_05 AC 11 ms
6,176 KB
testcase_06 AC 11 ms
5,968 KB
testcase_07 AC 11 ms
6,032 KB
testcase_08 AC 11 ms
5,960 KB
testcase_09 AC 11 ms
6,132 KB
testcase_10 AC 11 ms
6,116 KB
testcase_11 AC 10 ms
6,128 KB
testcase_12 AC 10 ms
6,116 KB
testcase_13 AC 12 ms
6,052 KB
testcase_14 AC 11 ms
5,984 KB
testcase_15 AC 12 ms
6,148 KB
testcase_16 AC 13 ms
5,992 KB
testcase_17 AC 13 ms
6,144 KB
testcase_18 AC 13 ms
6,048 KB
testcase_19 AC 12 ms
5,980 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/python
# -*- coding: utf-8 -*-

A = map(str, raw_input().split())
B = map(str, raw_input().split())

if int(A[1]) > int(B[1]):
	print A[0]
elif int(B[1]) > int(A[1]):
	print B[0]
else:
	print "-1"
0