結果

問題 No.204 ゴールデン・ウィーク(2)
ユーザー Mao-betaMao-beta
提出日時 2024-04-05 12:29:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 69 ms / 1,000 ms
コード長 1,613 bytes
コンパイル時間 315 ms
コンパイル使用メモリ 81,984 KB
実行使用メモリ 69,116 KB
最終ジャッジ日時 2024-10-01 01:04:18
合計ジャッジ時間 4,884 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
67,908 KB
testcase_01 AC 68 ms
67,052 KB
testcase_02 AC 67 ms
67,784 KB
testcase_03 AC 65 ms
68,360 KB
testcase_04 AC 69 ms
67,736 KB
testcase_05 AC 64 ms
68,732 KB
testcase_06 AC 66 ms
67,952 KB
testcase_07 AC 65 ms
68,664 KB
testcase_08 AC 65 ms
68,716 KB
testcase_09 AC 66 ms
67,312 KB
testcase_10 AC 63 ms
66,972 KB
testcase_11 AC 63 ms
67,592 KB
testcase_12 AC 65 ms
67,612 KB
testcase_13 AC 64 ms
67,636 KB
testcase_14 AC 64 ms
67,184 KB
testcase_15 AC 63 ms
67,904 KB
testcase_16 AC 63 ms
67,388 KB
testcase_17 AC 63 ms
67,744 KB
testcase_18 AC 63 ms
68,760 KB
testcase_19 AC 64 ms
68,388 KB
testcase_20 AC 68 ms
69,116 KB
testcase_21 AC 64 ms
67,808 KB
testcase_22 AC 62 ms
67,940 KB
testcase_23 AC 65 ms
67,544 KB
testcase_24 AC 64 ms
68,520 KB
testcase_25 AC 64 ms
67,924 KB
testcase_26 AC 64 ms
67,588 KB
testcase_27 AC 65 ms
66,848 KB
testcase_28 AC 67 ms
68,604 KB
testcase_29 AC 64 ms
68,324 KB
testcase_30 AC 62 ms
67,552 KB
testcase_31 AC 65 ms
68,008 KB
testcase_32 AC 66 ms
67,304 KB
testcase_33 AC 62 ms
67,368 KB
testcase_34 AC 65 ms
68,768 KB
testcase_35 AC 63 ms
67,432 KB
testcase_36 AC 63 ms
68,200 KB
testcase_37 AC 65 ms
67,800 KB
testcase_38 AC 64 ms
67,880 KB
testcase_39 AC 66 ms
67,728 KB
testcase_40 AC 64 ms
68,664 KB
testcase_41 AC 63 ms
68,756 KB
testcase_42 AC 63 ms
68,856 KB
testcase_43 AC 63 ms
68,464 KB
testcase_44 AC 62 ms
68,448 KB
testcase_45 AC 63 ms
67,592 KB
testcase_46 AC 63 ms
67,576 KB
testcase_47 AC 63 ms
68,656 KB
testcase_48 AC 63 ms
68,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import math
import bisect
from heapq import heapify, heappop, heappush
from collections import deque, defaultdict, Counter
from functools import lru_cache
from itertools import accumulate, combinations, permutations, product

sys.set_int_max_str_digits(10 ** 6)
sys.setrecursionlimit(1000000)
MOD = 10 ** 9 + 7
MOD99 = 998244353

input = lambda: sys.stdin.readline().strip()
NI = lambda: int(input())
NMI = lambda: map(int, input().split())
NLI = lambda: list(NMI())
SI = lambda: input()
SMI = lambda: input().split()
SLI = lambda: list(SMI())
EI = lambda m: [NLI() for _ in range(m)]


from typing import List
from itertools import groupby

# RUN LENGTH ENCODING str -> list(tuple())
# example) "aabbbbaaca" -> [('a', 2), ('b', 4), ('a', 2), ('c', 1), ('a', 1)]
def runLengthEncode(S: str) -> "List[tuple[str, int]]":
    grouped = groupby(S)
    res = []
    for k, v in grouped:
        res.append((k, int(len(list(v)))))
    return res


def main():
    D = NI()
    C = "x"*14 + SI() + SI() + "x"*14
    R = runLengthEncode(C)
    ans = 0
    for i, (x, k) in enumerate(R):
        i = int(i)
        if x == "x":
            if k <= D:
                tmp = k
                if i > 0:
                    tmp += R[i-1][1]
                if i < len(R)-1:
                    tmp += R[i+1][1]
                ans = max(ans, tmp)
            else:
                if i > 0:
                    ans = max(ans, D + R[i-1][1])
                if i < len(R) - 1:
                    ans = max(ans, D + R[i+1][1])
    if ans == 0:
        ans = D
    print(ans)


if __name__ == "__main__":
    main()
0