結果

問題 No.1345 Beautiful BINGO
ユーザー MitarushiMitarushi
提出日時 2021-01-16 13:51:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,360 ms / 2,000 ms
コード長 848 bytes
コンパイル時間 331 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 78,336 KB
最終ジャッジ日時 2024-05-06 06:55:31
合計ジャッジ時間 25,726 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,608 KB
testcase_01 AC 42 ms
57,344 KB
testcase_02 AC 38 ms
52,480 KB
testcase_03 AC 35 ms
52,352 KB
testcase_04 AC 35 ms
52,352 KB
testcase_05 AC 58 ms
66,176 KB
testcase_06 AC 37 ms
51,840 KB
testcase_07 AC 103 ms
76,932 KB
testcase_08 AC 37 ms
51,840 KB
testcase_09 AC 37 ms
52,480 KB
testcase_10 AC 44 ms
60,160 KB
testcase_11 AC 61 ms
67,456 KB
testcase_12 AC 37 ms
52,480 KB
testcase_13 AC 99 ms
76,288 KB
testcase_14 AC 47 ms
60,800 KB
testcase_15 AC 37 ms
51,712 KB
testcase_16 AC 51 ms
60,160 KB
testcase_17 AC 42 ms
57,600 KB
testcase_18 AC 38 ms
52,096 KB
testcase_19 AC 41 ms
57,344 KB
testcase_20 AC 36 ms
51,840 KB
testcase_21 AC 40 ms
57,472 KB
testcase_22 AC 159 ms
76,800 KB
testcase_23 AC 1,134 ms
77,824 KB
testcase_24 AC 554 ms
77,184 KB
testcase_25 AC 142 ms
77,184 KB
testcase_26 AC 326 ms
77,056 KB
testcase_27 AC 1,112 ms
78,080 KB
testcase_28 AC 162 ms
77,184 KB
testcase_29 AC 324 ms
77,184 KB
testcase_30 AC 210 ms
77,184 KB
testcase_31 AC 165 ms
77,440 KB
testcase_32 AC 133 ms
77,568 KB
testcase_33 AC 1,071 ms
77,824 KB
testcase_34 AC 121 ms
76,928 KB
testcase_35 AC 120 ms
76,928 KB
testcase_36 AC 1,360 ms
78,336 KB
testcase_37 AC 136 ms
76,800 KB
testcase_38 AC 368 ms
77,056 KB
testcase_39 AC 1,080 ms
77,952 KB
testcase_40 AC 589 ms
77,824 KB
testcase_41 AC 586 ms
77,184 KB
testcase_42 AC 37 ms
52,224 KB
testcase_43 AC 40 ms
51,968 KB
testcase_44 AC 47 ms
57,472 KB
testcase_45 AC 47 ms
57,600 KB
testcase_46 AC 39 ms
51,968 KB
testcase_47 AC 38 ms
52,096 KB
testcase_48 AC 39 ms
52,352 KB
testcase_49 AC 40 ms
51,968 KB
testcase_50 AC 37 ms
52,096 KB
testcase_51 AC 39 ms
57,472 KB
testcase_52 AC 1,065 ms
77,696 KB
testcase_53 AC 1,142 ms
77,568 KB
testcase_54 AC 1,107 ms
77,824 KB
testcase_55 AC 1,089 ms
78,080 KB
testcase_56 AC 1,089 ms
77,696 KB
testcase_57 AC 1,133 ms
77,824 KB
testcase_58 AC 1,102 ms
77,952 KB
testcase_59 AC 1,093 ms
78,080 KB
testcase_60 AC 1,090 ms
77,952 KB
testcase_61 AC 1,099 ms
77,952 KB
testcase_62 AC 1,058 ms
77,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
a = [[int(i) for i in input().split()] for _ in range(n)]

ans = 10**18
for x in range(2):
    for y in range(2):
        for i in range(1 << n):
            su = 0
            b = [j[:] for j in a]
            ok = x+y
            if x:
                for j in range(n):
                    su += b[j][j]
                    b[j][j] = 0
            if y:
                for j in range(n):
                    su += b[j][n-1-j]
                    b[j][n-1-j] = 0
            for j in range(n):
                if (i >> j) & 1 == 1:
                    ok += 1
                    for k in range(n):
                        su += b[k][j]
                        b[k][j] = 0
            c = [sum(j) for j in b]
            c.sort()
            su += sum(c[:max(0, m-ok)])
            ans = min(ans, su)
print(ans)
0