Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
93103 石水生 15加到第几项 C++ Accepted 1 MS 264 KB 142 2024-10-10 13:19:12

Tests(1/1):


Code:

#include <bits/stdc++.h> using namespace std; int main() { int i=0,sum=0; while(sum<=1000){ sum+=i; i++; } cout<<i-1; }