結果

問題 No.1345 Beautiful BINGO
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-01-16 17:35:12
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 855 bytes
コンパイル時間 179 ms
コンパイル使用メモリ 82,380 KB
実行使用メモリ 88,936 KB
最終ジャッジ日時 2024-05-05 20:45:13
合計ジャッジ時間 5,832 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
59,392 KB
testcase_01 AC 47 ms
60,800 KB
testcase_02 AC 46 ms
60,032 KB
testcase_03 AC 43 ms
54,272 KB
testcase_04 AC 42 ms
54,144 KB
testcase_05 AC 82 ms
76,644 KB
testcase_06 AC 41 ms
53,888 KB
testcase_07 AC 123 ms
77,612 KB
testcase_08 AC 42 ms
53,760 KB
testcase_09 AC 42 ms
54,144 KB
testcase_10 AC 66 ms
70,016 KB
testcase_11 AC 82 ms
76,928 KB
testcase_12 AC 43 ms
53,760 KB
testcase_13 AC 121 ms
77,312 KB
testcase_14 AC 67 ms
70,016 KB
testcase_15 AC 42 ms
53,632 KB
testcase_16 AC 67 ms
70,272 KB
testcase_17 AC 48 ms
60,416 KB
testcase_18 AC 41 ms
53,504 KB
testcase_19 AC 48 ms
60,800 KB
testcase_20 AC 42 ms
53,760 KB
testcase_21 AC 48 ms
60,544 KB
testcase_22 AC 471 ms
78,112 KB
testcase_23 TLE -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
testcase_49 -- -
testcase_50 -- -
testcase_51 -- -
testcase_52 -- -
testcase_53 -- -
testcase_54 -- -
testcase_55 -- -
testcase_56 -- -
testcase_57 -- -
testcase_58 -- -
testcase_59 -- -
testcase_60 -- -
testcase_61 -- -
testcase_62 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

from copy import deepcopy
n,m = map(int,input().split())
A = [list(map(int,input().split())) for i in range(n)]

ans = 10**10
for i in range(1<<(n+2)):

    s = deepcopy(A)
    count = 0
    c = 0
    for j in range(n+2):
        if i >> j & 1:
            c += 1
            if j == n:
                for k in range(n):
                    count += s[k][k]
                    s[k][k] = 0
            elif j == n+1:
                for k in range(n):
                    count += s[k][-1-k]
                    s[k][-1-k] = 0
            else:
                for k in range(n):
                    count += s[k][j]
                    s[k][j] = 0
    l = [sum(s[i]) for i in range(n)]
    l.sort()
    now = 0
    if c+n < m:
        continue
    while c < m:
        c += 1
        count += l[now]
        now += 1
    ans = min(ans,count)

print(ans)
0