

実行時間制限: 2 sec / メモリ制限: 1024 MB
配点 : 点
問題文
縦 行、横 列のマス目があり、各マスには つの整数が書かれています。 上から 行目、左から 列目のマスに書かれている整数は です。
マス目が下記の条件を満たすかどうかを判定してください。
および を満たすすべての整数の組 について、 が成り立つ。
制約
- 入力はすべて整数
入力
入力は以下の形式で標準入力から与えられる。
出力
マス目が問題文中の条件を満たす場合は Yes
と出力し、条件を満たさない場合は No
と出力せよ。
入力例 1Copy
3 3 2 1 4 3 1 3 6 4 1
出力例 1Copy
Yes
および を満たす整数の組 は 個存在し、それらすべてについて が成り立ちます。例えば、
- について、
- について、
- について、
- について、
- について、
が成り立ちます。残りの についても同様に確認できます。
よって、Yes
を出力します。
入力例 2Copy
2 4 4 3 2 1 5 6 7 8
出力例 2Copy
No
問題文中の条件を満たさないので、No
を出力します。
例えば、 について、 です。
Score : points
Problem Statement
We have a grid with horizontal rows and vertical columns, where each square contains an integer. The integer written on the square at the -th row from the top and -th column from the left is .
Determine whether the grid satisfies the condition below.
holds for every quadruple of integers such that and .
Constraints
- All values in input are integers.
Input
Input is given from Standard Input in the following format:
Output
If the grid satisfies the condition in the Problem Statement, print Yes
; otherwise, print No
.
Sample Input 1Copy
3 3 2 1 4 3 1 3 6 4 1
Sample Output 1Copy
Yes
There are nine quadruples of integers such that and . For all of them, holds. Some examples follow.
- For , we have .
- For , we have .
- For , we have .
- For , we have .
- For , we have .
We can also see that the property holds for the other quadruples: .
Thus, we should print Yes
.
Sample Input 2Copy
2 4 4 3 2 1 5 6 7 8
Sample Output 2Copy
No
We should print No
because the condition is not satisfied.
This is because, for example, we have for .