結果

問題 No.1345 Beautiful BINGO
ユーザー chineristACchineristAC
提出日時 2021-01-16 13:23:00
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 762 bytes
コンパイル時間 507 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 85,952 KB
最終ジャッジ日時 2024-11-27 13:44:35
合計ジャッジ時間 57,268 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
57,728 KB
testcase_01 AC 41 ms
60,668 KB
testcase_02 AC 42 ms
60,128 KB
testcase_03 AC 36 ms
53,292 KB
testcase_04 AC 42 ms
53,600 KB
testcase_05 AC 83 ms
76,512 KB
testcase_06 AC 41 ms
53,508 KB
testcase_07 AC 135 ms
76,900 KB
testcase_08 AC 41 ms
53,552 KB
testcase_09 AC 41 ms
53,408 KB
testcase_10 AC 55 ms
63,516 KB
testcase_11 AC 85 ms
76,496 KB
testcase_12 AC 41 ms
53,564 KB
testcase_13 AC 135 ms
77,288 KB
testcase_14 AC 59 ms
64,660 KB
testcase_15 AC 36 ms
52,940 KB
testcase_16 AC 45 ms
63,584 KB
testcase_17 AC 40 ms
60,912 KB
testcase_18 AC 35 ms
54,100 KB
testcase_19 AC 39 ms
59,968 KB
testcase_20 AC 33 ms
53,884 KB
testcase_21 AC 38 ms
59,236 KB
testcase_22 AC 235 ms
77,132 KB
testcase_23 TLE -
testcase_24 AC 1,112 ms
78,140 KB
testcase_25 AC 177 ms
77,264 KB
testcase_26 AC 596 ms
78,492 KB
testcase_27 TLE -
testcase_28 AC 188 ms
77,140 KB
testcase_29 AC 591 ms
78,088 KB
testcase_30 AC 351 ms
78,328 KB
testcase_31 AC 244 ms
76,988 KB
testcase_32 AC 135 ms
77,668 KB
testcase_33 TLE -
testcase_34 AC 156 ms
78,004 KB
testcase_35 AC 155 ms
77,500 KB
testcase_36 TLE -
testcase_37 AC 166 ms
77,476 KB
testcase_38 AC 762 ms
78,696 KB
testcase_39 TLE -
testcase_40 AC 1,174 ms
79,084 KB
testcase_41 AC 1,249 ms
79,508 KB
testcase_42 AC 38 ms
52,096 KB
testcase_43 AC 39 ms
52,224 KB
testcase_44 AC 45 ms
59,392 KB
testcase_45 AC 45 ms
59,032 KB
testcase_46 AC 39 ms
52,224 KB
testcase_47 AC 38 ms
52,736 KB
testcase_48 AC 38 ms
53,120 KB
testcase_49 AC 39 ms
52,608 KB
testcase_50 AC 41 ms
52,480 KB
testcase_51 AC 45 ms
58,752 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)]

S = [sum(A[i]) for i in range(N)]

res = 10**18
for i in range(2**(N+2)):
    tmp_A = [[A[j][k] * (not i>>j & 1) for k in range(N)] for j in range(N)]
    cost = 0
    cnt = M
    for j in range(N):
        if i>>j & 1:
            cost += S[j]
            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