| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 86472 | sh25_zhangjiajia | 求平方 | C++ | Accepted | 0 MS | 244 KB | 189 | 2026-04-03 14:50:15 |
#include <bits/stdc++.h> using namespace std; int main() { int n; cin >>n; cout << 1; for(int i =2;i<=n;i++) { cout<<","<<(i*i); } return 0; }