結果

問題 No.2553 Holidays
ユーザー 👑 rin204rin204
提出日時 2024-09-15 15:22:45
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 908 bytes
コンパイル時間 182 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 78,464 KB
最終ジャッジ日時 2024-09-15 15:22:51
合計ジャッジ時間 5,085 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 85 ms
75,776 KB
testcase_05 WA -
testcase_06 AC 54 ms
62,080 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 63 ms
68,864 KB
testcase_16 AC 62 ms
68,864 KB
testcase_17 AC 62 ms
67,968 KB
testcase_18 AC 64 ms
68,480 KB
testcase_19 AC 63 ms
68,608 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 59 ms
64,640 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 93 ms
77,440 KB
testcase_26 AC 83 ms
75,264 KB
testcase_27 AC 85 ms
75,520 KB
testcase_28 AC 83 ms
74,880 KB
testcase_29 AC 83 ms
74,368 KB
testcase_30 AC 41 ms
52,096 KB
testcase_31 AC 41 ms
51,968 KB
testcase_32 AC 41 ms
52,096 KB
testcase_33 AC 41 ms
51,712 KB
testcase_34 AC 41 ms
51,840 KB
testcase_35 AC 41 ms
51,712 KB
testcase_36 AC 41 ms
51,712 KB
testcase_37 AC 41 ms
51,968 KB
testcase_38 AC 41 ms
51,840 KB
testcase_39 AC 41 ms
51,840 KB
testcase_40 AC 41 ms
51,968 KB
testcase_41 AC 41 ms
51,584 KB
testcase_42 AC 41 ms
51,584 KB
testcase_43 AC 41 ms
51,840 KB
testcase_44 AC 41 ms
51,712 KB
testcase_45 AC 42 ms
52,096 KB
testcase_46 AC 41 ms
52,096 KB
testcase_47 AC 41 ms
52,096 KB
testcase_48 AC 40 ms
51,968 KB
testcase_49 AC 41 ms
52,096 KB
testcase_50 AC 41 ms
51,840 KB
testcase_51 AC 41 ms
51,584 KB
testcase_52 AC 41 ms
51,968 KB
testcase_53 AC 41 ms
51,712 KB
testcase_54 AC 42 ms
51,968 KB
testcase_55 AC 41 ms
51,840 KB
testcase_56 AC 41 ms
51,840 KB
testcase_57 AC 41 ms
51,968 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 // 2 - 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