結果

問題 No.1345 Beautiful BINGO
ユーザー chineristACchineristAC
提出日時 2021-01-16 13:16:27
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 784 bytes
コンパイル時間 270 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 80,996 KB
最終ジャッジ日時 2024-11-27 13:30:03
合計ジャッジ時間 50,286 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,224 KB
testcase_01 AC 46 ms
57,728 KB
testcase_02 AC 47 ms
59,520 KB
testcase_03 AC 39 ms
52,480 KB
testcase_04 AC 39 ms
52,096 KB
testcase_05 AC 76 ms
72,320 KB
testcase_06 AC 38 ms
52,480 KB
testcase_07 AC 109 ms
76,160 KB
testcase_08 AC 39 ms
52,096 KB
testcase_09 AC 39 ms
52,352 KB
testcase_10 AC 64 ms
66,304 KB
testcase_11 AC 74 ms
71,552 KB
testcase_12 AC 39 ms
52,736 KB
testcase_13 AC 106 ms
76,288 KB
testcase_14 AC 58 ms
64,896 KB
testcase_15 AC 39 ms
52,096 KB
testcase_16 AC 57 ms
63,744 KB
testcase_17 AC 45 ms
57,728 KB
testcase_18 AC 39 ms
52,096 KB
testcase_19 AC 44 ms
57,728 KB
testcase_20 AC 38 ms
51,968 KB
testcase_21 AC 44 ms
57,856 KB
testcase_22 AC 224 ms
77,128 KB
testcase_23 TLE -
testcase_24 AC 1,208 ms
77,312 KB
testcase_25 AC 171 ms
76,544 KB
testcase_26 AC 790 ms
77,744 KB
testcase_27 TLE -
testcase_28 AC 172 ms
76,672 KB
testcase_29 AC 780 ms
77,608 KB
testcase_30 AC 352 ms
76,800 KB
testcase_31 AC 224 ms
77,000 KB
testcase_32 AC 124 ms
76,672 KB
testcase_33 TLE -
testcase_34 AC 153 ms
76,928 KB
testcase_35 AC 155 ms
76,928 KB
testcase_36 TLE -
testcase_37 AC 138 ms
77,696 KB
testcase_38 AC 770 ms
77,480 KB
testcase_39 TLE -
testcase_40 AC 1,167 ms
77,952 KB
testcase_41 AC 1,239 ms
78,664 KB
testcase_42 AC 38 ms
52,224 KB
testcase_43 AC 37 ms
52,096 KB
testcase_44 AC 44 ms
58,880 KB
testcase_45 AC 42 ms
57,728 KB
testcase_46 AC 37 ms
52,224 KB
testcase_47 AC 37 ms
52,224 KB
testcase_48 AC 38 ms
52,480 KB
testcase_49 AC 38 ms
52,096 KB
testcase_50 AC 39 ms
52,992 KB
testcase_51 AC 44 ms
57,728 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 #

N,M = map(int,input().split())
A = [list(map(int,input().split())) for i in range(N)]

res = 10**18
for i in range(2**(N+2)):
    tmp_A = [[A[j][k] for k in range(N)] for j in range(N)]
    cost = 0
    cnt = M
    for j in range(N):
        if i>>j & 1:
            for k in range(N):
                cost += tmp_A[j][k]
                tmp_A[j][k] = 0
            cnt -= 1
    if i>>(N) & 1:
        for k in range(N):
            cost += tmp_A[k][k]
            tmp_A[k][k] = 0
        cnt -= 1
    if i>>(N+1) & 1:
        for k in range(N):
            cost += tmp_A[N-1-k][k]
            tmp_A[N-1-k][k] = 0
        cnt -= 1

    column = [sum(tmp_A[k][j] for k in range(N)) for j in range(N)]
    column.sort()
    cost += sum(column[:cnt])
    res = min(res,cost)

print(res)
0