http://codeforces.com/contest/456/problem/A
1 second
256 megabytes
standard input
standard output
One day Dima and Alex had an argument about the price and quality of laptops. Dima thinks that the more expensive a laptop is, the better it is. Alex disagrees. Alex thinks that there are two laptops, such that the price of the first laptop is less (strictly smaller) than the price of the second laptop but the quality of the first laptop is higher (strictly greater) than the quality of the second laptop.
Please, check the guess of Alex. You are given descriptions of n laptops. Determine whether two described above laptops exist.
The first line contains an integer n (1 ≤ n ≤ 105) — the number of laptops.
Next n lines contain two integers each, ai and bi (1 ≤ ai, bi ≤ n), where ai is the price of the i-th laptop, and bi is the number that represents the quality of the i-th laptop (the larger the number is, the higher is the quality).
All ai are distinct. All bi are distinct.
If Alex is correct, print "Happy Alex", otherwise print "Poor Alex" (without the quotes).
2
1 2
2 1
Happy Alex ------------------------------------------------------------------------------------------------
1 second
256 megabytes
standard input
standard output
Fedya studies in a gymnasium. Fedya's maths hometask is to calculate the following expression:
(1n + 2n + 3n + 4n) mod 5
for given value of n. Fedya managed to complete the task. Can you? Note that given number n can be extremely large (e.g. it can exceed any integer type of your programming language).
The single line contains a single integer n (0 ≤ n ≤ 10105). The number doesn't contain any leading zeroes.
Print the value of the expression without leading zeros.
4
4
124356983594583453458888889
0
Operation x mod y means taking remainder after division x by y.
Note to the first sample:
===============================================================================
#include <stdio.h>
#include <string.h> int main()
{
int n,m,i,j;
int a,b,c,d;
scanf("%d",&n);
//scanf("%d%d",&a,&b);
int sum=;
for(i=;i<n;i++)
{
scanf("%d%d",&c,&d);
if(c<d)
sum++;
}
if(sum>)
printf("Happy Alex\n");
else
printf("Poor Alex\n");
}
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <iostream>
char str[];
int main()
{
//
int n,m,i,j;
//memset(str,0,sizeof(str));
while(scanf("%s",str)!=EOF)
{
int len=strlen(str);
int data=;
if(len == )
{
if((str[len-]-'')%==)
printf("4\n");
else printf("0\n");
continue;
}
data=(str[len-]-'')+(str[len-]-'')*;
if(data % == )
printf("4\n");
else
printf("0\n");
}
return ;
}