結果

問題 No.201 yukicoderじゃんけん
ユーザー togatoga
提出日時 2015-08-25 09:03:26
言語 Python2
(2.7.18)
結果
WA  
実行時間 -
コード長 166 bytes
コンパイル時間 70 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-07-18 13:20:22
合計ジャッジ時間 1,097 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 17 WA * 3
権限があれば一括ダウンロードができます

ソースコード

diff #

S,P,X = map(str, raw_input().split())
A,B,C = map(str, raw_input().split())
if (P == B):
    print -1
else:
    if (P > B):
        print S
    else:
        print A
0