結果

問題 No.2094 Symmetry
ユーザー rlangevinrlangevin
提出日時 2023-01-10 23:02:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 176 ms / 2,000 ms
コード長 483 bytes
コンパイル時間 335 ms
コンパイル使用メモリ 82,392 KB
実行使用メモリ 106,452 KB
最終ジャッジ日時 2024-12-21 12:27:31
合計ジャッジ時間 7,340 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
52,408 KB
testcase_01 AC 32 ms
52,076 KB
testcase_02 AC 31 ms
53,284 KB
testcase_03 AC 31 ms
52,700 KB
testcase_04 AC 32 ms
51,972 KB
testcase_05 AC 31 ms
53,148 KB
testcase_06 AC 31 ms
52,280 KB
testcase_07 AC 33 ms
52,252 KB
testcase_08 AC 33 ms
52,896 KB
testcase_09 AC 168 ms
106,048 KB
testcase_10 AC 168 ms
105,544 KB
testcase_11 AC 166 ms
106,452 KB
testcase_12 AC 167 ms
106,056 KB
testcase_13 AC 138 ms
96,588 KB
testcase_14 AC 171 ms
106,176 KB
testcase_15 AC 169 ms
105,932 KB
testcase_16 AC 172 ms
105,548 KB
testcase_17 AC 140 ms
96,332 KB
testcase_18 AC 155 ms
96,456 KB
testcase_19 AC 172 ms
106,168 KB
testcase_20 AC 168 ms
106,448 KB
testcase_21 AC 168 ms
106,440 KB
testcase_22 AC 173 ms
105,316 KB
testcase_23 AC 149 ms
96,344 KB
testcase_24 AC 141 ms
96,720 KB
testcase_25 AC 176 ms
106,056 KB
testcase_26 AC 171 ms
106,188 KB
testcase_27 AC 32 ms
52,480 KB
testcase_28 AC 106 ms
101,424 KB
testcase_29 AC 31 ms
51,856 KB
testcase_30 AC 104 ms
101,472 KB
testcase_31 AC 108 ms
104,372 KB
testcase_32 AC 108 ms
104,128 KB
testcase_33 AC 32 ms
53,652 KB
testcase_34 AC 104 ms
102,500 KB
testcase_35 AC 105 ms
101,268 KB
testcase_36 AC 97 ms
99,740 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, input().split())
S = []
cnt = 0
for i in range(2 * N):
    L = list(input())
    cnt += L.count("#")
    S.append(L)
C = []
V = []
for i in range(2 * N):
    L = list(map(int, input().split()))
    C.append(L)
    V.extend(L)
    
V.sort(reverse=True)
ans = sum(V[:cnt])
if cnt % 2:
    print(ans)
    exit()
P = []
for i in range(2 * N):
    for j in range(N):
        P.append(C[i][j] + C[i][2 * N - 1 - j])
P.sort(reverse=True)
print(max(ans, sum(P[:cnt//2]) + K))
0