結果

問題 No.1345 Beautiful BINGO
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-01-16 17:33:26
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 822 bytes
コンパイル時間 203 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 148,736 KB
最終ジャッジ日時 2024-11-27 21:49:04
合計ジャッジ時間 41,083 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
59,392 KB
testcase_01 AC 47 ms
142,336 KB
testcase_02 AC 47 ms
65,536 KB
testcase_03 AC 42 ms
135,680 KB
testcase_04 AC 42 ms
59,776 KB
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 AC 66 ms
75,136 KB
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 AC 40 ms
136,448 KB
testcase_16 AC 66 ms
75,008 KB
testcase_17 AC 48 ms
142,336 KB
testcase_18 AC 42 ms
58,880 KB
testcase_19 AC 47 ms
142,080 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 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
testcase_32 AC 150 ms
77,440 KB
testcase_33 TLE -
testcase_34 RE -
testcase_35 RE -
testcase_36 TLE -
testcase_37 AC 179 ms
77,696 KB
testcase_38 RE -
testcase_39 TLE -
testcase_40 RE -
testcase_41 TLE -
testcase_42 AC 41 ms
53,504 KB
testcase_43 RE -
testcase_44 RE -
testcase_45 AC 46 ms
60,672 KB
testcase_46 RE -
testcase_47 RE -
testcase_48 RE -
testcase_49 RE -
testcase_50 RE -
testcase_51 RE -
testcase_52 TLE -
testcase_53 TLE -
testcase_54 RE -
testcase_55 RE -
testcase_56 TLE -
testcase_57 TLE -
testcase_58 RE -
testcase_59 TLE -
testcase_60 TLE -
testcase_61 RE -
testcase_62 TLE -
権限があれば一括ダウンロードができます

ソースコード

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