Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
5902 | peng | 不高兴的津津 | C++ | 通过 | 100 | 0 MS | 704 KB | 292 | 2020-08-20 15:10:44 |
#include <iostream> #include <cstdio> using namespace std; int main () { int s,m,max,a; max = 0 ; a=0; for (int i = 1; i <= 7;i++ ) { cin >> s >> m; if (s + m > max && s + m > 8) { max = s + m; a = i; } } cout << a; return 0; }