Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
316107 123456 【C2-2】奇数求和 Python3 通过 100 55 MS 3736 KB 101 2025-04-05 19:18:50

Tests(3/3):


m,n=map(int,input().split()) s=0 i=m while i<=n: if i%2==1: s+=i i+=1 print(s)


测评信息: