結果

問題 No.1345 Beautiful BINGO
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-01-16 17:35:12
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 855 bytes
コンパイル時間 183 ms
コンパイル使用メモリ 82,420 KB
実行使用メモリ 161,608 KB
最終ジャッジ日時 2024-11-27 21:51:34
合計ジャッジ時間 70,147 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
59,136 KB
testcase_01 AC 50 ms
142,208 KB
testcase_02 AC 49 ms
64,896 KB
testcase_03 AC 44 ms
62,864 KB
testcase_04 AC 44 ms
59,648 KB
testcase_05 AC 85 ms
158,208 KB
testcase_06 AC 43 ms
59,008 KB
testcase_07 AC 126 ms
158,504 KB
testcase_08 AC 43 ms
58,752 KB
testcase_09 AC 44 ms
135,424 KB
testcase_10 AC 69 ms
75,648 KB
testcase_11 AC 86 ms
157,824 KB
testcase_12 AC 44 ms
59,264 KB
testcase_13 AC 124 ms
158,692 KB
testcase_14 AC 68 ms
75,008 KB
testcase_15 AC 43 ms
134,668 KB
testcase_16 AC 69 ms
75,648 KB
testcase_17 AC 49 ms
142,080 KB
testcase_18 AC 44 ms
59,136 KB
testcase_19 AC 50 ms
141,568 KB
testcase_20 AC 45 ms
58,752 KB
testcase_21 AC 48 ms
142,336 KB
testcase_22 AC 508 ms
83,100 KB
testcase_23 TLE -
testcase_24 TLE -
testcase_25 AC 275 ms
158,848 KB
testcase_26 AC 1,911 ms
85,760 KB
testcase_27 TLE -
testcase_28 AC 320 ms
83,200 KB
testcase_29 AC 1,902 ms
159,744 KB
testcase_30 AC 951 ms
84,608 KB
testcase_31 AC 552 ms
160,036 KB
testcase_32 AC 152 ms
82,304 KB
testcase_33 TLE -
testcase_34 AC 219 ms
84,224 KB
testcase_35 AC 218 ms
161,608 KB
testcase_36 TLE -
testcase_37 AC 190 ms
77,952 KB
testcase_38 AC 1,917 ms
80,712 KB
testcase_39 TLE -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 AC 44 ms
53,760 KB
testcase_43 AC 43 ms
53,504 KB
testcase_44 AC 49 ms
59,904 KB
testcase_45 AC 53 ms
60,544 KB
testcase_46 AC 45 ms
53,376 KB
testcase_47 AC 47 ms
53,760 KB
testcase_48 AC 45 ms
53,888 KB
testcase_49 AC 49 ms
53,504 KB
testcase_50 AC 51 ms
53,376 KB
testcase_51 AC 53 ms
59,648 KB
testcase_52 TLE -
testcase_53 TLE -
testcase_54 TLE -
testcase_55 TLE -
testcase_56 TLE -
testcase_57 TLE -
testcase_58 TLE -
testcase_59 TLE -
testcase_60 TLE -
testcase_61 TLE -
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
    if c+n < m:
        continue
    while c < m:
        c += 1
        count += l[now]
        now += 1
    ans = min(ans,count)

print(ans)
0