luogu#P9564. [SDCPC2023] Three Dice

[SDCPC2023] Three Dice

题目描述

Dice are small, throwable objects with marked sides capable of landing in multiple positions. They are typically used to generate random values, especially in the context of tabletop games.

The most common dice are small cubes, with faces numbered from 11 to 66. Number nn (1n61 \le n \le 6) is usually represented by a pattern of nn round dots, known as pips. Moreover, the pips on the 11 and 44 faces are colored red, while those on the 22, 33, 55 and 66 faces are black.

Little Cyan Fish has three dice. One day, he threw them onto a table, and then observed the uppermost faces. He claimed that the total number of the red pips facing up was exactly AA, and the total number of the black pips facing up was exactly BB.

However, you find his claim doubtful. You want to verify whether it is possible to throw three dice such that the total number of red pips facing up is AA, and the total number of black pips facing up is BB.

输入格式

There is only one test case in each test file.

The first line of the input contains two integers AA and BB (0A,B1000 \leq A,B \leq 100), indicating the total number of red pips facing up and the number of black pips facing up.

输出格式

Output one line. If it is possible for Little Cyan Fish to throw three dice such that the total number of red pips facing up is AA, and the total number of black pips facing up is BB output Yes. Otherwise output No.

题目大意

【题目描述】

骰子,是一种各面带有标记,以生成随机数的小型可投掷道具,通常用于桌上游戏。

最常见的骰子是一种小正方体,每个面上被标记了从 1166 的数字。数字 nn1n61 \le n \le 6)通常由 nn 个小圆点组成的图案来表示,其中 11 号与 44 号面的小圆点是红色的,而 22, 33, 5566 号面的小圆点是黑色的。

小青鱼手中有三只骰子。有一天,他将这三只骰子投掷在桌子上,并观察了朝上的那一个面。他发现所有朝上的面中,红色的点数之和恰好为 AA,而黑色的点数之和恰好为 BB

然而,您对小青鱼的发现感到怀疑。您想要确认是否有可能投掷出三只骰子,使得所有朝上的面中,红色的点数之和恰好为 AA,而黑色的点数之和恰好为 BB

【输入格式】

每个测试文件仅有一组测试数据。

第一行输入两个整数 AABB0A,B1000 \leq A,B \leq 100),表示朝上的红色点数之和与黑色点数之和。

【输出格式】

输出一行。如果小青鱼有可能投掷出三只骰子使得所有朝上的面中,红色的点数之和恰好为 AA,而黑色的点数之和恰好为 BB,则输出 Yes。否则输出 No

【样例解释】

在第一组样例中,其中一种合法的方案为 4,2,34, 2, 3

在第二组样例中,其中一种合法的方案为 1,1,11, 1, 1

4 5

Yes

3 0

Yes

1 2

No

提示

In the first example, one possible solution is 4,2,34, 2, 3.

In the second example, one possible solution is 1,1,11, 1, 1.