Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
6954 | 谢锦卓 | 18删除成绩 | C++ | Wrong Answer | 0 MS | 252 KB | 461 | 2025-03-29 10:11:00 |
#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 a[101],n,_max=0,_min=101,tot; double ave; int main(){ cin>>n; for(int i=1;i<=n;i++){ cin>>a[i]; } cin>>tot; for(int i=tot;i<n;i++){ cout<<a[i]<<" "; } return 0; }
------Input------
28 39 3 82 10 45 91 22 88 82 87 30 85 40 68 3 9 1 43 77 90 71 9 60 49 13 94 89 59 18
------Answer-----
39 3 82 10 45 91 22 88 82 87 30 85 40 68 3 9 1 77 90 71 9 60 49 13 94 89 59
------Your output-----
43 77 90 71 9 60 49 13 94 89