456A. Laptops

作者在 2014-08-09 19:18:26 发布以下内容

地址:http://codeforces.com/problemset/problem/456/A

题意:不知道是不是我看错了,我的理解是求序列中是否有这种情况存在即a1<a2&&b1>b2,但是这样却过了,表示很无解...

#include <stdio.h>

int main(int argc, char *argv[])
{
    int n, flag = 1;
    scanf("%d", &n);
    for(int i = 1, a, b; i <= n; i++)
    {
        scanf("%d%d", &a, &b);
        if(a != b) flag = 0;
    }
    puts(flag ? "Poor Alex" : "Happy Alex");
    return 0;
}

 

Codeforces | 阅读 1687 次
文章评论,共0条
游客请输入验证码
浏览9430次
文章归档
最新评论