CF378A.Playing with Dice
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Two players are playing a game. First each of them writes an integer from 1 to 6, and then a dice is thrown. The player whose written number got closer to the number on the dice wins. If both payers have the same difference, it's a draw.
The first player wrote number a , the second player wrote number b . How many ways to throw a dice are there, at which the first player wins, or there is a draw, or the second player wins?
输入格式
The single line contains two integers a and b ( 1<=a,b<=6 ) — the numbers written on the paper by the first and second player, correspondingly.
输出格式
Print three integers: the number of ways to throw the dice at which the first player wins, the game ends with a draw or the second player wins, correspondingly.
输入输出样例
输入#1
2 5
输出#1
3 0 3
输入#2
2 4
输出#2
2 1 3
说明/提示
The dice is a standard cube-shaped six-sided object with each side containing a number from 1 to 6, and where all numbers on all sides are distinct.
You can assume that number a is closer to number x than number b , if |a-x|<|b-x| .