| Run ID |
作者 |
问题 |
语言 |
测评结果 |
Time |
Memory |
代码长度 |
提交时间 |
| 123204 |
丁俊杰 |
15加到第几项 |
Python3 |
Wrong Answer |
33 MS |
3720 KB |
103 |
2025-06-28 13:15:15 |
Tests(0/1):
Code:
res=0
xiang=0
a=1
while res<=1000:
res+=a
xiang+=1
a+=1
print(xiang+1)
Run Info:
------Input------
0
------Answer-----
45
------Your output-----
46