Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
43048 | Hyma | 求平方 | C++ | Accepted | 0 MS | 244 KB | 152 | 2024-03-06 23:26:31 |
#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; }