| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 146164 | 王镜铭 | 二维数组的最大值与最小值 | C++ | Wrong Answer | 0 MS | 264 KB | 361 | 2026-01-27 12:43:33 |
#include<bits/stdc++.h> using namespace std; int main(){ int n; cin>>n; int a[n][n]; for(int i=0;i<n;i++) for(int j=0;j<n;j++) cin>>a[i][j]; int b=0,c=a[0][0]; for(int i=0;i<n;i++){ for(int j=0;j<n;j++){ if(a[i][j]<c){ c=a[i][j]; } if(a[i][j]<b){ b=a[i][j]; } } } cout<<c<<" "<<b; return 0; }
------Input------
3 1 2 3 4 5 6 7 8 9
------Answer-----
1 9
------Your output-----
1 0