Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
111121 汤奕硕 15加到第几项 C++ Accepted 0 MS 260 KB 295 2025-02-27 18:40:05

Tests(1/1):


Code:

#include <iostream> using namespace std; int main() { int n = 1; int s = 0; while (s <= 1000) { s = n * (n + 1) / 2; n++; } // 由于循环结束时 n 已经加了 1,所以需要减去 1 n--; cout << n << endl; return 0; }