結果
| 問題 | No.201 yukicoderじゃんけん |
| コンテスト | |
| ユーザー |
lllllll88938494
|
| 提出日時 | 2023-05-30 20:36:42 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 142 bytes |
| 記録 | |
| コンパイル時間 | 342 ms |
| コンパイル使用メモリ | 84,864 KB |
| 実行使用メモリ | 65,280 KB |
| 最終ジャッジ日時 | 2026-06-02 16:45:31 |
| 合計ジャッジ時間 | 2,136 ms |
|
ジャッジサーバーID (参考情報) |
judge3_1 / judge2_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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)
lllllll88938494