Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
93696 | 张曦 | 18成绩插入 | C++ | Accepted | 1 MS | 272 KB | 270 | 2024-10-18 23:49:43 |
#include <bits/stdc++.h> using namespace std; int main() { int f; cin>>f; int a[f]; for(int j = 0;j < f;j++) cin>>a[j]; int k; cin>>k; cout<<k<<' '; for(int i = 0;i<f;i++) { cout<<a[i]<<' '; } }