开盲盒 #2
2024-05-03 14:16:06
发布于:广东
7阅读
0回复
0点赞
根据题目 判断
#include <iostream>
#include <cstdio>
using namespace std;
int main(){
int n, x, y;
string a;
cin >> n;
for(int i = 1; i <= n; i++){
cin >> a >> x >> y;
if(x >= 2400 && x < y){//如果有选手的赛前分>=2400且有进步
cout << "YES";//输出是
return 0;
}
}cout << "NO";
return 0;
}
时间复杂度:
个人难度:
这里空空如也
有帮助,赞一个