Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
5904 | Tracy | 不高兴的津津 | C++ | 通过 | 100 | 0 MS | 700 KB | 327 | 2020-08-20 15:12:49 |
#include <iostream> #include <cstdio> #include <iomanip> #include <cmath> using namespace std; int main () { int a, b; int answer =0; int max_time=0; 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; }