Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
54336 | zhangweiran | 不高兴的津津 | C++ | 通过 | 0 MS | 244 KB | 341 | 2024-10-27 10:41:07 |
#include<bits/stdc++.h> using namespace std; int main(){ int hours, worst_day = 0, worst_hours = 0, a, b; for(int i = 1; i <= 7; i++){ cin >> a >> b; hours = a + b; if(hours > worst_hours){ worst_day = i; worst_hours = hours; } } cout << worst_day; return 0; }