結果
| 問題 | No.201 yukicoderじゃんけん |
| コンテスト | |
| ユーザー |
steek79
|
| 提出日時 | 2015-10-12 12:53:02 |
| 言語 | PyPy2 (7.3.15) |
| 結果 |
AC
|
| 実行時間 | 83 ms / 5,000 ms |
| コード長 | 208 bytes |
| 記録 | |
| コンパイル時間 | 208 ms |
| コンパイル使用メモリ | 77,496 KB |
| 最終ジャッジ日時 | 2025-12-03 17:25:10 |
|
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 20 |
ソースコード
A = raw_input().split()
B = raw_input().split()
nameA = A[0]
nameB = B[0]
pointA = int(A[1])
pointB = int(B[1])
if pointA > pointB:
print nameA
elif pointA < pointB:
print nameB
else:
print "-1"
steek79