1757.Diplomas and Certificates

Time Limit: 1s Memory Limit: 256MB

There are n students who have taken part in an olympiad. Now it's time to award the students.

Some of them will receive diplomas, some wiil get certificates, and others won't receive anything. Students with diplomas and certificates are called winners. But there are some rules of counting the number of diplomas and certificates. The number of certificates must be exactly k times greater than the number of diplomas. The number of winners must not be greater than half of the number of all students (i.e. not be greater than half of n). It's possible that there are no winners.

You have to identify the maximum possible number of winners, according to these rules. Also for this case you have to calculate the number of students with diplomas, the number of students with certificates and the number of students who are not winners.

Input Format(From the terminal/stdin)

The first (and the only) line of input contains two integers n and k (1 \le n,k \le 1012), where n is the number of students and k is the ratio between the number of certificates and the number of diplomas.

Output Format(To the terminal/stdout)

Output three numbers: the number of students with diplomas, the number of students with certificates and the number of students who are not winners in case when the number of winners is maximum possible.

It's possible that there are no winners.

Sample Input 1

Copy
18 2
  · \n

Sample Output 1

Copy
3 6 9
 · · \n

Sample Input 2

Copy
9 10
 ·  \n

Sample Output 2

Copy
0 0 9
 · · \n

Sample Input 3

Copy
1000000000000 5
             · \n

Sample Output 3

Copy
83333333333 416666666665 500000000002
           ·            ·            \n

Sample Input 4

Copy
1000000000000 499999999999
             ·            \n

Sample Output 4

Copy
1 499999999999 500000000000
 ·            ·            \n

Submit

请先 登录

© 2025 FAQs