結果

問題 No.2267 群の公理
ユーザー tassei903tassei903
提出日時 2023-04-14 21:38:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 54 ms / 2,000 ms
コード長 889 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 62,976 KB
最終ジャッジ日時 2024-10-10 12:20:51
合計ジャッジ時間 3,826 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
51,936 KB
testcase_01 AC 40 ms
52,224 KB
testcase_02 AC 40 ms
52,608 KB
testcase_03 AC 39 ms
52,096 KB
testcase_04 AC 40 ms
52,224 KB
testcase_05 AC 40 ms
52,480 KB
testcase_06 AC 40 ms
52,556 KB
testcase_07 AC 40 ms
52,096 KB
testcase_08 AC 39 ms
51,840 KB
testcase_09 AC 41 ms
52,480 KB
testcase_10 AC 39 ms
52,224 KB
testcase_11 AC 39 ms
52,352 KB
testcase_12 AC 39 ms
51,968 KB
testcase_13 AC 39 ms
51,968 KB
testcase_14 AC 40 ms
52,224 KB
testcase_15 AC 40 ms
52,096 KB
testcase_16 AC 40 ms
52,096 KB
testcase_17 AC 40 ms
52,608 KB
testcase_18 AC 39 ms
52,224 KB
testcase_19 AC 39 ms
51,712 KB
testcase_20 AC 39 ms
51,712 KB
testcase_21 AC 40 ms
52,200 KB
testcase_22 AC 39 ms
52,096 KB
testcase_23 AC 40 ms
51,968 KB
testcase_24 AC 41 ms
52,224 KB
testcase_25 AC 41 ms
52,480 KB
testcase_26 AC 40 ms
52,352 KB
testcase_27 AC 47 ms
59,136 KB
testcase_28 AC 45 ms
58,240 KB
testcase_29 AC 45 ms
58,752 KB
testcase_30 AC 47 ms
59,392 KB
testcase_31 AC 49 ms
61,568 KB
testcase_32 AC 49 ms
60,416 KB
testcase_33 AC 47 ms
59,904 KB
testcase_34 AC 51 ms
61,952 KB
testcase_35 AC 49 ms
60,544 KB
testcase_36 AC 51 ms
62,208 KB
testcase_37 AC 53 ms
61,824 KB
testcase_38 AC 51 ms
61,824 KB
testcase_39 AC 54 ms
61,056 KB
testcase_40 AC 53 ms
62,336 KB
testcase_41 AC 54 ms
62,976 KB
testcase_42 AC 49 ms
61,184 KB
testcase_43 AC 51 ms
61,696 KB
testcase_44 AC 51 ms
61,824 KB
testcase_45 AC 53 ms
62,208 KB
testcase_46 AC 49 ms
60,416 KB
testcase_47 AC 52 ms
62,848 KB
testcase_48 AC 50 ms
60,928 KB
testcase_49 AC 49 ms
60,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
#######################################################################
n = ni()
a = [na()for i in range(n)]
ok = 1
for i in range(n):
    for j in range(n):
        for k in range(n):
            if a[a[i][j]][k] != a[i][a[j][k]]:
                ok = 0
f = 0
for e in range(n):
    g = 1
    for i in range(n):
        if not a[e][i] == a[i][e] == i:
            g = 0
    for i in range(n):
        z = 0
        for j in range(n):
            if e == a[i][j] == a[j][i]:
                z = 1
        if z^1:
            g = 0
    if g:
        f = 1
        break

if ok and f:
    Yes()
else:
    No()
0