Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
123205 丁俊杰 15加到第几项 Python3 Accepted 35 MS 3720 KB 97 2025-06-28 13:16:24

Tests(1/1):


Code:

res=0 xiang=0 a=1 while res<=1000: res+=a xiang+=1 a+=1 print(xiang)