結果

問題 No.452 横着者のビンゴゲーム
ユーザー titiatitia
提出日時 2023-08-03 01:30:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,595 ms / 3,000 ms
コード長 671 bytes
コンパイル時間 356 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 79,128 KB
最終ジャッジ日時 2024-10-12 23:36:13
合計ジャッジ時間 16,166 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,224 KB
testcase_01 AC 37 ms
51,968 KB
testcase_02 AC 38 ms
52,224 KB
testcase_03 AC 49 ms
65,280 KB
testcase_04 AC 38 ms
52,480 KB
testcase_05 AC 49 ms
67,200 KB
testcase_06 AC 37 ms
51,968 KB
testcase_07 AC 44 ms
60,672 KB
testcase_08 AC 50 ms
61,568 KB
testcase_09 AC 39 ms
52,224 KB
testcase_10 AC 39 ms
52,736 KB
testcase_11 AC 46 ms
61,696 KB
testcase_12 AC 39 ms
52,992 KB
testcase_13 AC 37 ms
51,968 KB
testcase_14 AC 1,595 ms
79,104 KB
testcase_15 AC 1,504 ms
79,128 KB
testcase_16 AC 766 ms
76,416 KB
testcase_17 AC 149 ms
75,648 KB
testcase_18 AC 187 ms
75,788 KB
testcase_19 AC 162 ms
76,160 KB
testcase_20 AC 137 ms
76,288 KB
testcase_21 AC 315 ms
76,344 KB
testcase_22 AC 125 ms
75,392 KB
testcase_23 AC 569 ms
76,288 KB
testcase_24 AC 114 ms
75,392 KB
testcase_25 AC 88 ms
75,584 KB
testcase_26 AC 369 ms
76,160 KB
testcase_27 AC 300 ms
75,776 KB
testcase_28 AC 203 ms
75,904 KB
testcase_29 AC 162 ms
76,288 KB
testcase_30 AC 395 ms
76,288 KB
testcase_31 AC 121 ms
76,128 KB
testcase_32 AC 103 ms
75,520 KB
testcase_33 AC 234 ms
75,776 KB
testcase_34 AC 194 ms
76,032 KB
testcase_35 AC 207 ms
75,904 KB
testcase_36 AC 92 ms
75,732 KB
testcase_37 AC 97 ms
75,136 KB
testcase_38 AC 1,296 ms
77,184 KB
testcase_39 AC 826 ms
76,928 KB
testcase_40 AC 824 ms
76,800 KB
testcase_41 AC 823 ms
76,924 KB
testcase_42 AC 819 ms
76,544 KB
testcase_43 AC 820 ms
76,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m=map(int,input().split())
ALIST=[]

for i in range(m):
    A=[list(map(int,input().split())) for i in range(n)]

    LIST=[]

    for j in range(n):
        X=A[j][:]
        LIST.append(X)

    for j in range(n):
        X=[]
        for k in range(n):
            X.append(A[k][j])
        LIST.append(X)

    X=[]
    for j in range(n):
        X.append(A[j][j])
    LIST.append(X)

    X=[]
    for j in range(n):
        X.append(A[n-1-j][j])
    LIST.append(X)

    ALIST.append(LIST)

MIN=1<<60

for i in range(m):
    for p in ALIST[i]:
        for j in range(i+1,m):
            for q in ALIST[j]:
                MIN=min(MIN,len(set(p+q)))

print(MIN-1)




0