Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
6010 | 朱辰寅Fred | 不高兴的津津 | C++ | 通过 | 100 | 0 MS | 700 KB | 373 | 2020-08-22 10:28:36 |
#include<cstdio> #include<iostream> using namespace std; int main(){ int school, home, unhappy, unhappyWeek; unhappy = 0; for(int i = 0; i< 7; i++){ cin >> school >> home; if(unhappy < school + home){ unhappy = school + home; unhappyWeek = i; } } if(unhappy > 8){ cout << unhappyWeek+1; } else{ cout << "00"; } return 0; }