#abc157b. B - Bingo
B - Bingo
Score : points
问题描述
我们有一张 格式的宾果卡。从上到下第 行、从左到右第 列的方格内包含数字 。
主持人(MC)将选择 个数字,即 。如果我们的宾果卡上有其中的一些数字,我们将在卡片上标记它们。
判断在选择了 个数字后,是否能达成宾果条件,即卡片上会出现一行、一列或对角线上有三个被标记的数字。
以上为通义千问 qwen-max 翻译,仅供参考。
Problem Statement
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.
Constraints
- All values in input are integers.
- $A_{i_1, j_1} \neq A_{i_2, j_2} ((i_1, j_1) \neq (i_2, j_2))$
Input
Input is given from Standard Input in the following format:
Output
If we will have a bingo, print Yes
; otherwise, print No
.
Sample Input 1
84 97 66
79 89 11
61 59 7
7
89
7
87
79
24
84
30
Sample Output 1
Yes
We will mark , and complete the diagonal from the top-left to the bottom-right.
Sample Input 2
41 7 46
26 89 2
78 92 8
5
6
45
16
57
17
Sample Output 2
No
We will mark nothing.
Sample Input 3
60 88 34
92 41 43
65 73 48
10
60
43
88
11
48
73
65
41
92
34
Sample Output 3
Yes
We will mark all the squares.
update @ 2024/3/10 17:14:08