Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
328134 123456 【C2-7】输出n-m小写字母表 Python3 通过 100 299 MS 3740 KB 90 2025-07-05 16:09:00

Tests(2/2):


n,m=map(int,input().split()) #97:'a' 65:'A' for i in range(n,m+1): print(chr(96+i))


测评信息: