結果

問題 No.201 yukicoderじゃんけん
ユーザー rocoder
提出日時 2017-05-14 06:40:29
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
RE  
(最新)
AC  
(最初)
実行時間 -
コード長 173 bytes
コンパイル時間 326 ms
コンパイル使用メモリ 12,288 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-09-16 05:17:26
合計ジャッジ時間 1,903 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 15 RE * 5
権限があれば一括ダウンロードができます

ソースコード

diff #

Sa,Pa,Xa=(i for i in input ().split())
Sb,Pb,Xb=(i for i in input ().split())
Pa=int(Pa)
Pb=int(Pb)
if Pa>Pb:
    print (Sa)
elif Pa==Pb:
    print (-1)
else:
    print (Sb)
0