結果

問題 No.201 yukicoderじゃんけん
ユーザー matriematrie
提出日時 2020-11-30 19:57:52
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 95 bytes
コンパイル時間 286 ms
コンパイル使用メモリ 10,528 KB
実行使用メモリ 7,980 KB
最終ジャッジ日時 2023-10-11 03:00:32
合計ジャッジ時間 1,753 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 15 ms
7,932 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 15 ms
7,848 KB
testcase_05 AC 15 ms
7,784 KB
testcase_06 AC 16 ms
7,908 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 16 ms
7,800 KB
testcase_10 AC 16 ms
7,800 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 16 ms
7,836 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 15 ms
7,836 KB
testcase_17 AC 15 ms
7,856 KB
testcase_18 WA -
testcase_19 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

a,b,c = input().split()
d,e,f = input().split()
if b==f: print(-1)
else: print(a if b>f else d)
0