Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
111587 祝家懿 直线分割圆 C++ Accepted 11 MS 272 KB 164 2025-03-02 16:44:40

Tests(10/10):


Code:

#include<bits/stdc++.h> using namespace std; int main(){ int n; cin>>n; long long x=1; for(int i=1;i<=n;i++){ x=x+i; } cout<<x; return 0; }