解题思路:
注意事项:
参考代码:
import math
while True:
try:
base = 8
t, q = input().strip().split()
t = int(t)
if t <= 1000:
all = base
else:
all = base + math.ceil((t - 1000) / 500) * 4
if q == 'y':
all = all + 5
print(all)
except:
break
0.0分
1 人评分