SGU - 276 - Andrew's Troubles

276. Andrew's Troubles

time limit per test: 0.25 sec.
memory limit per test: 65536 KB
input: standard
output: standard



Famous Berland ACM-ICPC team Anisovka consists of three programmers: Andrew, Michael and Ilya. A long time ago, during the first few months the team was founded, Andrew was very often late to the trainings and contests. To stimulate Andrew to be more punctual, Ilya and Andrew decided to introduce a new rule for team participants. If somebody is late (i.e. comes at least one second after appointed time) he owes a cup of tea to other team members. If he is late for 5 minutes, he owes two cups of tea. If he is late for 15 minutes, he owes three cups of tea. And if he is late for 30 minutes or more, he owes 4 cups of tea. 
The training starts at the time S (counted in seconds, from some predefined moment of time) and Andrew comes at the time P (also in seconds, counted from the same moment of time). 
Your task is to find how many cups of tea Andrew owes. 

Input
The input file contains single line with integer numbers S and P (0 <= S,P <= 10^4). 

Output
Write to the output file the number of cups Andrew owes. 

Sample test(s)

Input

Test #1 10 10 Test #2 10 11 Test #3 0 300 
Output

Test #1 


Test #2 


Test #3 

[submit]
[forum]
Author: Michael R. Mirzayanov
Resource: ACM ICPC 2004-2005, NEERC, Southern Subregional Contest
Date: Saratov, October 7, 2004









哎,今天又开始上课了,感觉上课就会浪费我的时间,都没时间刷题啦


每日一水...


AC代码:

#include <cstdio>
#include <cstring>
#include <algorithm>
using namespace std;

int main() {
	int S, P;
	while(scanf("%d %d", &S, &P) != EOF) {
		int t = P - S;
		if(t >= 1800) printf("4\n");
		else if(t >= 900) printf("3\n");
		else if(t >= 300) printf("2\n");
		else if(t >= 1) printf("1\n");
		else printf("0\n");
	}
	return 0;
}












你可能感兴趣的:(ACM,sgu)