Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
94166 | 余泽越 | 08打车费用 | Python3 | Wrong Answer | 33 MS | 3752 KB | 140 | 2024-10-19 20:23:25 |
a = int(input()) if a<=2: print(6) if a>2 and a<=10: print(6+(a-2)*1.8) if a>2 and a>10: print(6+8*1.8+(a-10)*(1.8*1.5))
------Input------
7
------Answer-----
15
------Your output-----
15.0