Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
5903 | Tracy | 不高兴的津津 | C++ | 解答错误 | 0 | 0 MS | 700 KB | 325 | 2020-08-20 15:11:21 |
#include <iostream> #include <cstdio> #include <iomanip> #include <cmath> using namespace std; int main () { int a, b; int answer =0; int max_time; for (int i=1; i<=7;i++) { cin >> a >> b; if (a+b>max_time && a+b>8) { max_time = a+b; answer = i; } } cout << answer; return 0; }