CF818A.Diplomas and Certificates
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
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.
输入格式
The first (and the only) line of input contains two integers n and k ( 1<=n,k<=1012 ), where n is the number of students and k is the ratio between the number of certificates and the number of diplomas.
输出格式
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.
输入输出样例
输入#1
18 2
输出#1
3 6 9
输入#2
9 10
输出#2
0 0 9
输入#3
1000000000000 5
输出#3
83333333333 416666666665 500000000002
输入#4
1000000000000 499999999999
输出#4
1 499999999999 500000000000