| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 79457 | sh25_zhuhy | 矩阵中每一行的最小值 | C++ | Accepted | 0 MS | 260 KB | 388 | 2026-01-04 14:19:46 |
#include <bits/stdc++.h> using namespace std ; int a[30][30] ; int row , col ; int main() { cin >> row >> col ; for(int i = 1 ; i <= row ; i++ ) { double tmp ; double mintmp ; cin >> mintmp ; for(int j = 2 ; j <= col ; j++ ) { cin >> tmp ; mintmp = min(mintmp , tmp ) ; } cout << mintmp << ' ' ; } cout << endl ; return 0 ; }