Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
1382 黄天泽 18删除成绩 C++ Compile Error 0 MS 0 KB 244 2023-09-09 20:17:43

Tests(0/0):


Code:

#include<iostream> using namespace std; int main(){ int n; cin>>n; int a[1000],b; for(int i=1;i<=n;i++){ cin>>a[i]; } cin>>b; for(int i=b;b>0;b--){ a[i]=a[i+1]; } for(int i=1;i<=n-1;i++){ cout<<a[i]<<" "; } }


Run Info:

mount: mount /usr on /home/judge/jnoj/judge/run/0/usr failed: No space left on device