ACMSGURU 276 - Andrew's Troubles

2021-08-11 10:51:15 浏览数 (1)

Andrew’s Troubles

Problem Description

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

0

Test #2

1

Test #3

2

Solution

代码语言:javascript复制
#include <bits/stdc  .h>

int main() {
    std::ios::sync_with_stdio(false);

    int s, p;
    std::cin >> s >> p;
    p -= s;
    int res = 0;
    if(p > 0 && p < 5 * 60) {
        res = 1;
    } else if(p >= 5 * 60 && p < 15 * 60) {
        res = 2;
    } else if(p >= 15 * 60 && p < 30 * 60) {
        res = 3;
    } else if(p >= 30 * 60) {
        res = 4;
    }

    std::cout << res << std::endl;
    return 0;
}

0 人点赞