Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
151035 李吴凡 08打车费用 Python3 Wrong Answer 43 MS 3748 KB 128 2026-04-03 20:01:52

Tests(1/10):


Code:

n = int(input()) if n <= 2: print(6) elif n <= 10: print(6 + (n - 2) * 1.8) else: print(6 + 8 * 1.8 + (n - 10) * 2.7)


Run Info:

------Input------
7
------Answer-----
15
------Your output-----
15.0