| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 80167 | sh25_shenpy | 指针也可以遍历数组 | C++ | Accepted | 0 MS | 252 KB | 191 | 2026-01-04 15:04:56 |
#include<iostream> using namespace std; int main(){ int n; int s[n]; cin>>n; for(int i=0;i<n;++i){ cin>>s[i]; cout<<s[i]<<" "; } return 0; }