CodeForces - 681A A Good Contest

   咳咳,从今天开始,每天做一个英语题,不论简单还是难,坚持到下学期的省赛,希望能有效果。

  这题就是判断是否能成为red,如果他超越的人里面有在比赛前分数达到2400,并且在比赛后分数上升,那么他就能成为red

AC代码:

#include
#include
using namespace std;
int main(){
    string name;
    int pre,aft,n;
    scanf("%d",&n);
    int ok=0;
    for(int i=0;i>name>>pre>>aft;
        if(pre>=2400&&aft>pre) ok=1;
    }
    if(ok) printf("YES\n");
    else printf("NO\n");
    return 0;
}

如有不当之处欢迎指出!

转载于:https://www.cnblogs.com/flyawayl/p/8305529.html

你可能感兴趣的:(CodeForces - 681A A Good Contest)