Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
107191 张亦瑞 累加器 Python3 Accepted 38 MS 3736 KB 49 2025-01-17 14:37:26

Tests(1/1):


Code:

s=0 i=100 while i>=1: s=s+i i=i-1 print(s)