結果

問題 No.201 yukicoderじゃんけん
ユーザー ABKZABKZ
提出日時 2023-01-14 11:40:16
言語 PyPy3
(7.3.15)
結果
RE  
(最新)
AC  
(最初)
実行時間 -
コード長 129 bytes
コンパイル時間 1,965 ms
コンパイル使用メモリ 86,556 KB
実行使用メモリ 78,996 KB
最終ジャッジ日時 2023-08-26 18:12:21
合計ジャッジ時間 3,673 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
71,432 KB
testcase_01 AC 73 ms
71,012 KB
testcase_02 AC 75 ms
71,152 KB
testcase_03 AC 73 ms
71,368 KB
testcase_04 AC 74 ms
71,112 KB
testcase_05 AC 74 ms
71,160 KB
testcase_06 AC 74 ms
70,988 KB
testcase_07 AC 74 ms
71,204 KB
testcase_08 AC 75 ms
71,472 KB
testcase_09 AC 75 ms
71,228 KB
testcase_10 AC 75 ms
71,348 KB
testcase_11 AC 75 ms
71,012 KB
testcase_12 AC 74 ms
71,424 KB
testcase_13 AC 76 ms
71,212 KB
testcase_14 AC 74 ms
71,280 KB
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 AC 73 ms
71,232 KB
testcase_19 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

A, PA, _ = input().split()
B, PB, _ = input().split()

if PA == PB:
	print(-1)
elif int(PA) > int(PB):
	print(A)
else:
	print(B)
0