| Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|---|
| 363290 | 耿家钧 | 【C4-8】每个小组的最大年龄 | C++ | 解答错误 | 0 | 4 MS | 256 KB | 270 | 2025-11-23 15:42:13 |
#include<bits/stdc++.h> using namespace std; int a[105][105],n,m,x,s,y,ma,mi; int main(){ cin>>n>>m; for(int i=1;i<=n;i++){ma=0; for(int j=1;j<=m;j++){ cin>>a[i][j]; if(ma>a[i][j]){ ma=a[i][j]; } } cout<<ma<<endl; } return 0; }