結果
| 問題 | No.201 yukicoderじゃんけん |
| コンテスト | |
| ユーザー |
togatoga
|
| 提出日時 | 2015-08-25 09:03:51 |
| 言語 | PyPy2 (7.3.15) |
| 結果 |
AC
|
| 実行時間 | 112 ms / 5,000 ms |
| コード長 | 188 bytes |
| 記録 | |
| コンパイル時間 | 154 ms |
| コンパイル使用メモリ | 77,468 KB |
| 最終ジャッジ日時 | 2025-12-03 16:24:49 |
|
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 20 |
ソースコード
S,P,X = map(str, raw_input().split())
A,B,C = map(str, raw_input().split())
P = int(P)
B = int(B)
if (P == B):
print -1
else:
if (P > B):
print S
else:
print A
togatoga