Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
110276 吴梓玄 18离开队伍后的人 C++ Wrong Answer 1 MS 268 KB 260 2025-02-15 16:55:59

Tests(0/10):


Code:

#include <bits/stdc++.h> using namespace std; int main() { int x,y; cin>>x; int a[x+5]; for(int i=1;i<=x;i++){ cin>>a[i]; } cin>>y; for(int i=1;i<y;i++){ cout<<a[i]<<' '; } for(int i=y;i<x;i++){ cout<<a[i]<<' '; } return 0; }


Run Info:

------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 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