結果

問題 No.2094 Symmetry
ユーザー rlangevinrlangevin
提出日時 2023-01-10 23:02:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 203 ms / 2,000 ms
コード長 483 bytes
コンパイル時間 150 ms
コンパイル使用メモリ 81,840 KB
実行使用メモリ 106,708 KB
最終ジャッジ日時 2024-06-01 08:03:02
合計ジャッジ時間 8,076 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,952 KB
testcase_01 AC 38 ms
51,956 KB
testcase_02 AC 37 ms
53,120 KB
testcase_03 AC 36 ms
52,492 KB
testcase_04 AC 37 ms
53,560 KB
testcase_05 AC 37 ms
52,068 KB
testcase_06 AC 38 ms
53,140 KB
testcase_07 AC 37 ms
53,220 KB
testcase_08 AC 38 ms
52,248 KB
testcase_09 AC 196 ms
105,924 KB
testcase_10 AC 192 ms
105,808 KB
testcase_11 AC 193 ms
106,440 KB
testcase_12 AC 192 ms
105,804 KB
testcase_13 AC 158 ms
96,592 KB
testcase_14 AC 194 ms
105,944 KB
testcase_15 AC 193 ms
106,196 KB
testcase_16 AC 191 ms
106,060 KB
testcase_17 AC 156 ms
96,332 KB
testcase_18 AC 160 ms
95,856 KB
testcase_19 AC 194 ms
106,188 KB
testcase_20 AC 199 ms
106,200 KB
testcase_21 AC 203 ms
106,708 KB
testcase_22 AC 202 ms
105,420 KB
testcase_23 AC 171 ms
96,464 KB
testcase_24 AC 160 ms
96,976 KB
testcase_25 AC 197 ms
106,180 KB
testcase_26 AC 199 ms
106,192 KB
testcase_27 AC 36 ms
52,792 KB
testcase_28 AC 119 ms
101,820 KB
testcase_29 AC 38 ms
52,272 KB
testcase_30 AC 121 ms
101,600 KB
testcase_31 AC 130 ms
104,752 KB
testcase_32 AC 135 ms
104,508 KB
testcase_33 AC 40 ms
53,420 KB
testcase_34 AC 133 ms
102,496 KB
testcase_35 AC 131 ms
101,264 KB
testcase_36 AC 114 ms
99,696 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