結果
問題 | No.201 yukicoderじゃんけん |
ユーザー |
![]() |
提出日時 | 2020-12-17 18:44:33 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 124 bytes |
コンパイル時間 | 310 ms |
コンパイル使用メモリ | 82,184 KB |
実行使用メモリ | 67,344 KB |
最終ジャッジ日時 | 2024-09-21 08:11:55 |
合計ジャッジ時間 | 1,996 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 15 RE * 5 |
ソースコード
a,b,_ = input().split()d,e,_ = input().split()if int(b) < int(e): print(d)elif int(b) > int(e): print(a)else: print(-1)