Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
98053 | 张泽一 | 参赛组别推荐 | Python3 | Accepted | 36 MS | 3772 KB | 210 | 2024-11-17 11:32:36 |
s=int(input()) if s<8: print("You are too young!") elif 8<=s<=12: print("Welcome to Junior Class!") elif 13<=s<=18: print("Welcome to Senior Class!") elif s>18: print("You are too old!")