結果

問題 No.1345 Beautiful BINGO
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-01-16 17:33:26
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 822 bytes
コンパイル時間 213 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 88,064 KB
最終ジャッジ日時 2024-05-05 20:43:57
合計ジャッジ時間 6,013 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
59,008 KB
testcase_01 AC 59 ms
60,544 KB
testcase_02 AC 51 ms
60,416 KB
testcase_03 AC 43 ms
53,888 KB
testcase_04 AC 43 ms
53,760 KB
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 AC 69 ms
70,016 KB
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 AC 41 ms
53,504 KB
testcase_16 AC 68 ms
70,272 KB
testcase_17 AC 48 ms
60,288 KB
testcase_18 AC 41 ms
53,504 KB
testcase_19 AC 50 ms
60,288 KB
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 TLE -
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
    while c < m:
        c += 1
        count += l[now]
        now += 1
    ans = min(ans,count)

print(ans)
0