Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
113556 | 李朋秦 | 18删除成绩 | C++ | Wrong Answer | 0 MS | 272 KB | 448 | 2025-03-16 09:54:02 |
#include<iostream> // cin\cout\endl #include<cstdio> //scanf()\printf() #include<cstring> // strcpy()\strcat()\strcmp()\strlen()\memset() #include<cmath> //sqrt()\pow()\abs()\ceil()\floor()\max()\min() using namespace std; int main(){ int a[100],b,c; cin>>b; for(int e=0;e<b;e++){ cin>>a[e]; } cin>>c; for(int i=c;i<b-1;i++){ a[i]=a[i+1]; } for(int j=0;j<b;j++){ cout<<a[j]<<" "; } return 0; }
------Input------
48 10 48 51 58 40 90 5 59 60 47 97 8 68 52 35 37 70 9 76 1 86 75 33 42 63 18 44 92 36 10 19 6 42 69 40 41 33 22 48 1 84 58 72 24 36 88 27 83 16
------Answer-----
10 48 51 58 40 90 5 59 60 47 97 8 68 52 35 70 9 76 1 86 75 33 42 63 18 44 92 36 10 19 6 42 69 40 41 33 22 48 1 84 58 72 24 36 88 27 83
------Your output-----
10 48 51 58 40 90 5 59 60 47 97 8 68 52 35 37 9 76 1 86 75 33 42 63 18 44 92 36 10 19 6 42 69 40 41 33 22 48 1 84 58 72 24 36 88 27 83 83