結果

問題 No.2094 Symmetry
ユーザー june19312june19312
提出日時 2022-10-07 22:49:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 170 ms / 2,000 ms
コード長 547 bytes
コンパイル時間 401 ms
コンパイル使用メモリ 82,252 KB
実行使用メモリ 92,796 KB
最終ジャッジ日時 2024-06-12 20:11:42
合計ジャッジ時間 5,801 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,500 KB
testcase_01 AC 39 ms
52,332 KB
testcase_02 AC 34 ms
52,596 KB
testcase_03 AC 33 ms
52,304 KB
testcase_04 AC 31 ms
52,332 KB
testcase_05 AC 31 ms
52,328 KB
testcase_06 AC 35 ms
51,940 KB
testcase_07 AC 33 ms
52,864 KB
testcase_08 AC 31 ms
53,172 KB
testcase_09 AC 158 ms
88,712 KB
testcase_10 AC 160 ms
89,096 KB
testcase_11 AC 164 ms
89,616 KB
testcase_12 AC 161 ms
88,972 KB
testcase_13 AC 162 ms
89,124 KB
testcase_14 AC 157 ms
88,836 KB
testcase_15 AC 160 ms
89,080 KB
testcase_16 AC 155 ms
88,836 KB
testcase_17 AC 158 ms
89,096 KB
testcase_18 AC 170 ms
88,832 KB
testcase_19 AC 170 ms
88,712 KB
testcase_20 AC 159 ms
89,244 KB
testcase_21 AC 156 ms
89,240 KB
testcase_22 AC 156 ms
88,708 KB
testcase_23 AC 158 ms
89,104 KB
testcase_24 AC 157 ms
88,748 KB
testcase_25 AC 159 ms
88,980 KB
testcase_26 AC 155 ms
88,716 KB
testcase_27 AC 32 ms
52,884 KB
testcase_28 AC 93 ms
89,712 KB
testcase_29 AC 33 ms
52,488 KB
testcase_30 AC 96 ms
89,236 KB
testcase_31 AC 99 ms
89,712 KB
testcase_32 AC 101 ms
89,108 KB
testcase_33 AC 33 ms
52,072 KB
testcase_34 AC 98 ms
92,796 KB
testcase_35 AC 102 ms
91,312 KB
testcase_36 AC 113 ms
90,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K = map(int,input().split())

kuro = 0
for i in range(N*2):
    tmp = input()
    kuro+=tmp.count("#")

score = []
score2 = []

for i in range(N*2):
    tmp2 = list(map(int,input().split()))
    for j in range(N):
        score2.append(tmp2[j]+tmp2[-1-j])
        score.append(tmp2[j])
        score.append(tmp2[-1-j])

score2.sort()
score2.reverse()
score.sort()
score.reverse()

if kuro%2 == 1:
    ans = sum(score[:kuro])
else:
    tmpans1 = sum(score[:kuro])
    tmpans2 = sum(score2[:(kuro//2)])+K
    ans = max(tmpans1,tmpans2)

print(ans)
0