| Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 83899 | sh25_zhoumy | 求平方 | C++ | 通过 | 0 MS | 248 KB | 207 | 2026-02-04 00:51:39 |
#include<bits/stdc++.h> using namespace std; inline int sq(int n){return n*n;} int main(){ int N; cin>>N; for(int i=1;i<N;++i) cout<<sq(i)<<","; cout<<sq(N); return 0; }