Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
46865 徐梁宸 2023经开区信息技术合格性考试-1 Python3 通过 100 49 MS 4472 KB 213 2024-10-15 16:14:06

Tests(8/8):


n = float(input()) if n<2000: print(round(n,1)) elif n >= 2000 and n < 3000: print(round(0.8*n,1)) elif n >= 3000 and n < 4000: print(round(0.7*n,1)) elif n >= 4000: print(round(0.6*n,1))


测评信息: