結果

問題 No.201 yukicoderじゃんけん
ユーザー rlangevinrlangevin
提出日時 2024-08-19 08:53:31
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 157 bytes
コンパイル時間 515 ms
コンパイル使用メモリ 82,232 KB
実行使用メモリ 66,952 KB
最終ジャッジ日時 2024-08-19 08:53:34
合計ジャッジ時間 2,287 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
52,148 KB
testcase_01 AC 29 ms
53,348 KB
testcase_02 AC 29 ms
52,204 KB
testcase_03 AC 29 ms
52,308 KB
testcase_04 AC 28 ms
53,100 KB
testcase_05 AC 28 ms
53,236 KB
testcase_06 AC 28 ms
53,312 KB
testcase_07 AC 28 ms
52,492 KB
testcase_08 AC 28 ms
53,296 KB
testcase_09 AC 29 ms
52,400 KB
testcase_10 AC 28 ms
52,424 KB
testcase_11 AC 28 ms
52,772 KB
testcase_12 AC 37 ms
52,432 KB
testcase_13 AC 28 ms
52,776 KB
testcase_14 AC 28 ms
52,792 KB
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

sa, pa, xa = input().split()
sb, pb, xb = input().split()
pa, pb = int(pa), int(pb)
if pa > pb:
    print(sa)
elif pa < pb:
    print(sb)
else:
    print(-1)
0