#ABC157B. Bingo
Bingo
题目描述
We have a bingo card with a grid. The square at the -th row from the top and the -th column from the left contains the number .
The MC will choose numbers, . If our bingo sheet contains some of those numbers, we will mark them on our sheet.
Determine whether we will have a bingo when the numbers are chosen, that is, the sheet will contain three marked numbers in a row, column, or diagonal.
我们有一张网格为 的宾果游戏卡。从上往下第 行和从左往上第 列的方格中包含数字 。
主持人将选择 个数字, 个数字。如果我们的宾果游戏纸上有这些数字,我们就会在我们的游戏纸上标记出来。
确定当选择 个数字时,我们是否会得到宾果,也就是说,纸上的一行、一列或对角线上会有三个标记的数字。
输入格式
输入内容按以下格式标准输入:
输出格式
如果有宾果游戏,则打印 "是";否则,打印 "否"。
样例 #1
样例输入 #1
84 97 66
79 89 11
61 59 7
7
89
7
87
79
24
84
30
样例输出 #1
Yes
样例 #2
样例输入 #2
41 7 46
26 89 2
78 92 8
5
6
45
16
57
17
样例输出 #2
No
样例 #3
样例输入 #3
60 88 34
92 41 43
65 73 48
10
60
43
88
11
48
73
65
41
92
34
样例输出 #3
Yes
说明
数据规模与约定
- 所有输入值均为整数。
- $A_{i_1, j_1} \neq A_{i_2, j_2} ((i_1, j_1) \neq (i_2, j_2))$
样例 解释
我们将标记 ,并完成从左上角到右下角的对角线。
样例 解释
我们将不做任何标记。
样例 解释
我们将标记所有方格。