| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 91439 | xiaoma_ustc | 评最优志愿者 | C++ | Compile Error | 0 | 0 MS | 0 KB | 480 | 2024-03-21 19:24:38 |
#include <algorithm> #include <iostream> #include <string> using namespace std; int sum[105]; int main() { int a, b; cin >> a >> b; for (int i = 1; i <= a; i++) { for (int j = 1; j <= b; j++) { int x; cin >> x; sum[i] += x; } } int maxn = *max_element(sum + 1, n); for (int i = 1; i <= a; i++) { if (sum[i] == maxn) cout << i << endl; } return 0; }