結果

問題 No.2553 Holidays
ユーザー 👑 rin204rin204
提出日時 2024-09-15 15:33:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 98 ms / 2,000 ms
コード長 903 bytes
コンパイル時間 359 ms
コンパイル使用メモリ 81,408 KB
実行使用メモリ 78,080 KB
最終ジャッジ日時 2024-09-15 15:33:52
合計ジャッジ時間 5,753 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 97 ms
77,824 KB
testcase_01 AC 90 ms
78,080 KB
testcase_02 AC 98 ms
75,648 KB
testcase_03 AC 82 ms
75,264 KB
testcase_04 AC 85 ms
75,392 KB
testcase_05 AC 53 ms
62,080 KB
testcase_06 AC 53 ms
62,208 KB
testcase_07 AC 53 ms
62,592 KB
testcase_08 AC 54 ms
64,256 KB
testcase_09 AC 53 ms
62,592 KB
testcase_10 AC 88 ms
77,312 KB
testcase_11 AC 88 ms
77,184 KB
testcase_12 AC 86 ms
77,696 KB
testcase_13 AC 89 ms
77,568 KB
testcase_14 AC 88 ms
77,568 KB
testcase_15 AC 62 ms
68,352 KB
testcase_16 AC 89 ms
69,120 KB
testcase_17 AC 61 ms
67,840 KB
testcase_18 AC 62 ms
68,224 KB
testcase_19 AC 61 ms
68,352 KB
testcase_20 AC 58 ms
65,536 KB
testcase_21 AC 59 ms
65,408 KB
testcase_22 AC 59 ms
65,536 KB
testcase_23 AC 59 ms
65,280 KB
testcase_24 AC 58 ms
65,280 KB
testcase_25 AC 92 ms
77,184 KB
testcase_26 AC 84 ms
75,264 KB
testcase_27 AC 85 ms
75,520 KB
testcase_28 AC 81 ms
74,240 KB
testcase_29 AC 80 ms
74,112 KB
testcase_30 AC 61 ms
51,456 KB
testcase_31 AC 40 ms
51,840 KB
testcase_32 AC 40 ms
51,840 KB
testcase_33 AC 41 ms
51,584 KB
testcase_34 AC 39 ms
51,968 KB
testcase_35 AC 40 ms
51,840 KB
testcase_36 AC 41 ms
51,840 KB
testcase_37 AC 40 ms
51,840 KB
testcase_38 AC 41 ms
51,712 KB
testcase_39 AC 41 ms
51,968 KB
testcase_40 AC 41 ms
52,352 KB
testcase_41 AC 40 ms
52,096 KB
testcase_42 AC 40 ms
51,840 KB
testcase_43 AC 40 ms
51,584 KB
testcase_44 AC 41 ms
51,712 KB
testcase_45 AC 41 ms
51,712 KB
testcase_46 AC 41 ms
51,840 KB
testcase_47 AC 41 ms
51,840 KB
testcase_48 AC 40 ms
52,224 KB
testcase_49 AC 40 ms
51,840 KB
testcase_50 AC 40 ms
51,840 KB
testcase_51 AC 40 ms
52,096 KB
testcase_52 AC 42 ms
51,840 KB
testcase_53 AC 41 ms
51,968 KB
testcase_54 AC 40 ms
51,712 KB
testcase_55 AC 40 ms
51,840 KB
testcase_56 AC 41 ms
51,584 KB
testcase_57 AC 41 ms
51,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
S = input()
S = "x" + S + "x"

ans = S.count("o")
S = S.split("o")

A = []
two = 0
one = 0
B = []
for T in S:
    if "x" not in T:
        le = len(T)
        if le == 1:
            ans += 1
        elif le % 2 == 1:
            A.append(le // 2)
        else:
            two += le // 2
    else:
        row = T.split("x")
        for i in range(len(row)):
            le = len(row[i])
            if le == 0:
                continue
            if i == 0 or i == len(row) - 1:
                two += le // 2
                if le % 2 == 1:
                    one += 1
            else:
                B.append(le)


C = []
A.sort()
for a in A:
    C += [2] * (a - 1)
    C += [3]

C += [2] * two
B.sort(reverse=True)
for b in B:
    C += [1]
    if b % 2 == 0:
        b -= 1
        one += 1
    C += [2] * (b // 2)

C += [1] * one

ans += sum(C[:m])
print(ans)
0