Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
94346 王晨鑫 09输出成绩等级 Python3 Wrong Answer 34 MS 3768 KB 267 2024-10-20 12:05:04

Tests(0/10):


Code:

q=input().split() a=q[0] a=int(a) if a<90: if a<80: if a<70: if a<60: print("D") else: print("C") else: print("C") else: print("B") else: print("A")


Run Info:

------Input------
60
------Answer-----
D
------Your output-----
C