Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
118467 潘允晨 累加器 Python3 Accepted 36 MS 3724 KB 54 2025-05-04 08:34:17

Tests(1/1):


Code:

s=0 a=1 while a<=100: s=s+a a+=1 print(s)