結果
問題 |
No.201 yukicoderじゃんけん
|
ユーザー |
![]() |
提出日時 | 2023-05-30 20:36:42 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 142 bytes |
コンパイル時間 | 274 ms |
コンパイル使用メモリ | 82,312 KB |
実行使用メモリ | 67,208 KB |
最終ジャッジ日時 | 2024-12-28 12:57:16 |
合計ジャッジ時間 | 2,124 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 15 RE * 5 |
ソースコード
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)