結果

問題 No.2094 Symmetry
ユーザー taiga0629kyoprotaiga0629kyopro
提出日時 2022-10-01 10:57:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 186 ms / 2,000 ms
コード長 608 bytes
コンパイル時間 402 ms
コンパイル使用メモリ 82,300 KB
実行使用メモリ 106,796 KB
最終ジャッジ日時 2024-06-06 04:12:58
合計ジャッジ時間 7,257 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,816 KB
testcase_01 AC 36 ms
53,564 KB
testcase_02 AC 36 ms
53,080 KB
testcase_03 AC 31 ms
53,128 KB
testcase_04 AC 32 ms
52,204 KB
testcase_05 AC 32 ms
53,104 KB
testcase_06 AC 32 ms
54,044 KB
testcase_07 AC 33 ms
52,624 KB
testcase_08 AC 34 ms
52,884 KB
testcase_09 AC 168 ms
105,924 KB
testcase_10 AC 163 ms
105,852 KB
testcase_11 AC 169 ms
106,092 KB
testcase_12 AC 173 ms
106,236 KB
testcase_13 AC 139 ms
97,516 KB
testcase_14 AC 175 ms
106,416 KB
testcase_15 AC 186 ms
106,164 KB
testcase_16 AC 174 ms
106,796 KB
testcase_17 AC 148 ms
97,452 KB
testcase_18 AC 141 ms
96,916 KB
testcase_19 AC 171 ms
106,224 KB
testcase_20 AC 172 ms
106,052 KB
testcase_21 AC 179 ms
106,600 KB
testcase_22 AC 167 ms
106,268 KB
testcase_23 AC 141 ms
97,556 KB
testcase_24 AC 137 ms
97,192 KB
testcase_25 AC 166 ms
106,668 KB
testcase_26 AC 174 ms
106,360 KB
testcase_27 AC 34 ms
52,912 KB
testcase_28 AC 103 ms
103,144 KB
testcase_29 AC 35 ms
52,440 KB
testcase_30 AC 104 ms
103,252 KB
testcase_31 AC 110 ms
103,304 KB
testcase_32 AC 108 ms
103,464 KB
testcase_33 AC 34 ms
52,412 KB
testcase_34 AC 110 ms
104,436 KB
testcase_35 AC 116 ms
104,456 KB
testcase_36 AC 105 ms
97,164 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k=map(int,input().split())
cnt=0
for i in range(2*n):
    s=list(input())
    cnt+=s.count("#")
c=[[]]
for i in range(2*n):
    c.append([0]+list(map(int,input().split())))



#シンメトリーじゃない
x=[]
for i in range(1,2*n+1):
    for j in range(1,2*n+1):
        x.append(c[i][j])
x.sort(reverse=True)
res=0
for i in range(cnt):res+=x[i]
ans=res

#シンメトリー
if cnt%2==0:
    x=[]
    for i in range(1,2*n+1):
        for j in range(1,n+1):
            x.append(c[i][j]+c[i][2*n+1-j])
    x.sort(reverse=True)
    res=k
    for i in range(cnt//2):res+=x[i]
ans=max(ans,res)
print(ans)
0