Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
363287 耿家钧 【C4-8】每个小组的最大年龄 C++ 解答错误 0 2 MS 244 KB 265 2025-11-23 15:41:34

Tests(0/1):


#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++){ 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; }


测评信息: