結果

問題 No.201 yukicoderじゃんけん
ユーザー lllllll88938494lllllll88938494
提出日時 2023-05-30 20:36:42
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 142 bytes
コンパイル時間 260 ms
コンパイル使用メモリ 87,032 KB
実行使用メモリ 79,056 KB
最終ジャッジ日時 2023-08-28 01:05:28
合計ジャッジ時間 3,352 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 71 ms
71,408 KB
testcase_01 AC 71 ms
71,372 KB
testcase_02 AC 70 ms
71,508 KB
testcase_03 AC 71 ms
71,660 KB
testcase_04 AC 69 ms
71,252 KB
testcase_05 AC 71 ms
71,304 KB
testcase_06 AC 69 ms
71,308 KB
testcase_07 AC 72 ms
71,332 KB
testcase_08 AC 72 ms
71,500 KB
testcase_09 AC 74 ms
71,416 KB
testcase_10 AC 75 ms
71,204 KB
testcase_11 AC 74 ms
71,400 KB
testcase_12 AC 71 ms
71,332 KB
testcase_13 AC 73 ms
71,440 KB
testcase_14 AC 74 ms
71,404 KB
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

s,t,_ = input().split()
ss,tt,_ = input().split()


if int(t) > int(tt):
    print(s)
elif int(t) < int(tt):
    print(ss)
else:
    print(-1)
0