結果
| 問題 | No.201 yukicoderじゃんけん |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2022-03-30 17:54:31 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
RE
(最新)
AC
(最初)
|
| 実行時間 | - |
| コード長 | 137 bytes |
| 記録 | |
| コンパイル時間 | 214 ms |
| コンパイル使用メモリ | 85,120 KB |
| 実行使用メモリ | 65,152 KB |
| 最終ジャッジ日時 | 2026-05-10 09:20:04 |
| 合計ジャッジ時間 | 2,376 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 15 RE * 5 |
ソースコード
S,p,x = input().split()
p = int(p)
T,q,y = input().split()
q = int(q)
if p < q:
print(T)
elif p > q:
print(S)
else:
print(-1)