| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 355902 | 李铭泽 | 【C0】Hello,World! | C++ | Compile Error | 0 | 0 MS | 0 KB | 330 | 2025-10-12 14:22:40 |
/*#include<bits/stdc++.h> using namespace std; int n,x,a[15],y; int main(){ cin>>n; for(int i=1;i<=n;i++)cin>>a[i]; cin>>x; for(int i=x;i<=n;i++) a[i]=a[i+1]; for(int i=1;i<=n-1;i++) cout<<a[i]<<" "; return 0; } */#include<iostream> using namespace std; int main(){ cout<<"Hello,World!"; return 0; }