| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 121044 | 朱铭轩 | 数组输出 | C++ | Wrong Answer | 1 MS | 268 KB | 418 | 2025-06-06 18:20:54 |
#include<bits/stdc++.h> using namespace std; int a[11]; int main(){ // for(int i=1;i<=3;i++) for(int j=1;j<=4;j++) scanf("%d",&a[i][j]); // for(int i=1;i<=3;i++) { // for(int j=1;j<=4;j++) { // if(a[i][j]<60) { // for(int k=1;k<=4;k++) printf("%d ",a[i][k]); // printf("\n"); // } // } // } for(int i=1;i<=10;i++) scanf("%d",&a[i]); for(int i=1;i<=1;i++) printf("%d ",a[i]); return 0; }
------Input------
109292 291023 393 393 32920201 19 3039 101 393 1
------Answer-----
109292 291023 393 393 32920201 19 3039 101 393 1
------Your output-----
109292