| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 80161 | sh25_shenpy | 指针也可以遍历数组 | C++ | Wrong Answer | 0 MS | 248 KB | 186 | 2026-01-04 15:04:42 |
#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; }