题解
2023-06-27 19:37:13
发布于:上海
41阅读
0回复
0点赞
#include <bits/stdc++.h>
using namespace std;
int main(){
int n,s,z,max_time=0,time=0;
cin >> n;
for(int i=1;i<=n;i++){
cin >> s;
cin >> z;
if((s>=90 && s<=140) && (z>=60 && z<=90)){
time++;
}else{
max_time=max(max_time,time);
time=0;
}
}
max_time=max(max_time,time);
cout << max_time;
return 0;
}
全部评论 1
额,为什么要发两次...而且还是相同的?
2023-08-08 来自 广东
0也许是我发错了
2023-08-08 来自 上海
0
有帮助,赞一个