Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
1576 吴奕希 18成绩插入 C++ Accepted 0 MS 264 KB 280 2023-10-22 14:39:31

Tests(10/10):


Code:

# include<iostream> using namespace std; int main() { int n; cin>>n; int lst[n+1]; for(int i = 1; i <= n; i++) { cin>>lst[i]; } cin>>lst[0]; for(int i = 0; i <= n; i++) { cout<<lst[i]<<" "; } return 0; }