結果

問題 No.201 yukicoderじゃんけん
ユーザー convexineqconvexineq
提出日時 2020-12-17 18:44:33
言語 PyPy3
(7.3.15)
結果
RE  
(最新)
AC  
(最初)
実行時間 -
コード長 124 bytes
コンパイル時間 498 ms
コンパイル使用メモリ 81,680 KB
実行使用メモリ 65,844 KB
最終ジャッジ日時 2023-10-21 07:03:33
合計ジャッジ時間 2,516 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,392 KB
testcase_01 AC 40 ms
53,392 KB
testcase_02 AC 42 ms
53,392 KB
testcase_03 AC 39 ms
53,392 KB
testcase_04 AC 39 ms
53,392 KB
testcase_05 AC 40 ms
53,392 KB
testcase_06 AC 40 ms
53,392 KB
testcase_07 AC 40 ms
53,392 KB
testcase_08 AC 40 ms
53,392 KB
testcase_09 AC 40 ms
53,392 KB
testcase_10 AC 40 ms
53,392 KB
testcase_11 AC 40 ms
53,392 KB
testcase_12 AC 40 ms
53,392 KB
testcase_13 AC 39 ms
53,392 KB
testcase_14 AC 41 ms
53,392 KB
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

a,b,_ = input().split()
d,e,_ = input().split()

if int(b) < int(e): print(d)
elif int(b) > int(e): print(a)
else: print(-1)
0