結果

問題 No.204 ゴールデン・ウィーク(2)
ユーザー rlangevinrlangevin
提出日時 2023-01-09 23:03:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 60 ms / 1,000 ms
コード長 657 bytes
コンパイル時間 430 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 67,888 KB
最終ジャッジ日時 2024-12-18 00:29:45
合計ジャッジ時間 4,056 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
63,088 KB
testcase_01 AC 60 ms
67,072 KB
testcase_02 AC 53 ms
63,928 KB
testcase_03 AC 50 ms
62,172 KB
testcase_04 AC 46 ms
60,752 KB
testcase_05 AC 52 ms
63,720 KB
testcase_06 AC 45 ms
59,772 KB
testcase_07 AC 57 ms
64,888 KB
testcase_08 AC 59 ms
67,888 KB
testcase_09 AC 56 ms
64,608 KB
testcase_10 AC 56 ms
65,908 KB
testcase_11 AC 54 ms
63,156 KB
testcase_12 AC 52 ms
63,020 KB
testcase_13 AC 55 ms
64,212 KB
testcase_14 AC 52 ms
62,464 KB
testcase_15 AC 56 ms
64,292 KB
testcase_16 AC 54 ms
63,268 KB
testcase_17 AC 53 ms
63,828 KB
testcase_18 AC 55 ms
64,720 KB
testcase_19 AC 58 ms
65,492 KB
testcase_20 AC 54 ms
64,120 KB
testcase_21 AC 56 ms
65,372 KB
testcase_22 AC 59 ms
65,972 KB
testcase_23 AC 55 ms
64,516 KB
testcase_24 AC 54 ms
64,972 KB
testcase_25 AC 53 ms
63,332 KB
testcase_26 AC 48 ms
61,940 KB
testcase_27 AC 53 ms
63,536 KB
testcase_28 AC 56 ms
64,464 KB
testcase_29 AC 49 ms
61,184 KB
testcase_30 AC 46 ms
60,220 KB
testcase_31 AC 52 ms
62,232 KB
testcase_32 AC 47 ms
61,236 KB
testcase_33 AC 55 ms
64,356 KB
testcase_34 AC 44 ms
59,660 KB
testcase_35 AC 40 ms
53,492 KB
testcase_36 AC 40 ms
52,884 KB
testcase_37 AC 49 ms
61,700 KB
testcase_38 AC 52 ms
62,900 KB
testcase_39 AC 48 ms
60,052 KB
testcase_40 AC 38 ms
53,276 KB
testcase_41 AC 45 ms
60,080 KB
testcase_42 AC 54 ms
64,132 KB
testcase_43 AC 39 ms
53,048 KB
testcase_44 AC 39 ms
53,612 KB
testcase_45 AC 54 ms
62,492 KB
testcase_46 AC 54 ms
63,212 KB
testcase_47 AC 57 ms
64,816 KB
testcase_48 AC 46 ms
60,600 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def calc(S):
    cnt = 0
    N = len(S)
    ans = 0
    for i in range(N):
        if S[i] == "o":
            cnt += 1
        else:
            ans = max(ans, cnt)
            cnt = 0
    return max(ans, cnt)

D = int(input())
C = ["x"] * 14
C.extend(list(input()))
C.extend(list(input()))
C.extend(["x"] * 14)
N = len(C)
ans = calc(C)
for d in range(1, D + 1):
    for i in range(N):
        if C[i:i+d] == ["x"] * d:
            temp = [None] * N
            for j in range(N):
                if i <= j < i + d:
                    temp[j] = "o"
                else:
                    temp[j] = C[j]
            ans = max(ans, calc(temp))
print(ans)
0