結果

問題 No.204 ゴールデン・ウィーク(2)
ユーザー yansi819yansi819
提出日時 2024-05-23 20:51:45
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 864 bytes
コンパイル時間 408 ms
コンパイル使用メモリ 82,400 KB
実行使用メモリ 67,212 KB
最終ジャッジ日時 2024-05-23 20:51:50
合計ジャッジ時間 4,403 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,120 KB
testcase_01 AC 36 ms
52,552 KB
testcase_02 AC 36 ms
52,892 KB
testcase_03 AC 35 ms
53,260 KB
testcase_04 AC 37 ms
52,868 KB
testcase_05 AC 37 ms
53,840 KB
testcase_06 AC 36 ms
52,064 KB
testcase_07 AC 37 ms
52,436 KB
testcase_08 AC 36 ms
52,692 KB
testcase_09 AC 37 ms
52,208 KB
testcase_10 AC 37 ms
52,408 KB
testcase_11 AC 37 ms
53,208 KB
testcase_12 AC 36 ms
52,688 KB
testcase_13 AC 36 ms
53,068 KB
testcase_14 AC 36 ms
53,116 KB
testcase_15 AC 36 ms
52,940 KB
testcase_16 AC 36 ms
53,624 KB
testcase_17 AC 36 ms
53,260 KB
testcase_18 AC 36 ms
52,428 KB
testcase_19 AC 38 ms
53,724 KB
testcase_20 AC 36 ms
52,364 KB
testcase_21 AC 36 ms
52,476 KB
testcase_22 AC 37 ms
52,804 KB
testcase_23 AC 36 ms
52,476 KB
testcase_24 AC 36 ms
53,560 KB
testcase_25 AC 36 ms
52,888 KB
testcase_26 AC 37 ms
53,288 KB
testcase_27 AC 37 ms
53,252 KB
testcase_28 AC 37 ms
53,424 KB
testcase_29 AC 37 ms
53,812 KB
testcase_30 AC 36 ms
52,460 KB
testcase_31 RE -
testcase_32 AC 37 ms
53,228 KB
testcase_33 AC 36 ms
52,956 KB
testcase_34 AC 37 ms
53,368 KB
testcase_35 RE -
testcase_36 RE -
testcase_37 AC 37 ms
51,940 KB
testcase_38 AC 37 ms
52,872 KB
testcase_39 AC 36 ms
53,912 KB
testcase_40 WA -
testcase_41 AC 38 ms
52,956 KB
testcase_42 AC 37 ms
53,200 KB
testcase_43 AC 37 ms
52,928 KB
testcase_44 AC 37 ms
52,276 KB
testcase_45 AC 36 ms
53,012 KB
testcase_46 AC 36 ms
53,424 KB
testcase_47 AC 36 ms
53,868 KB
testcase_48 AC 37 ms
52,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

D = int(input())
S = "x" * D + input().rstrip() + input().rstrip() + "x" * D
x, y = [], []
cntX, cntO = 0, 0
for i in range(len(S)):
    if S[i] == "x":
        if i != 0 and S[i - 1] == "o":
            x.append(cntO)
            cntO = 0
        cntX += 1
    else:
        if S[i - 1] == "x":
            y.append(cntX)
            cntX = 0
        cntO += 1
y.append(cntX)
MAX = 0
for i in range(len(y)):
    if y[i] <= D:
        if i == 0:
            MAX = max(MAX, y[i] + x[i])
        elif i == len(y) - 1:
            MAX = max(MAX, x[i - 1] + y[i])
        else:
            MAX = max(MAX, x[i - 1] + y[i] + x[i])
    else:
        if i == 0:
            MAX = max(MAX, D + x[i])
        elif i == len(y) - 1:
            MAX = max(MAX, x[i - 1] + D)
        else:
            MAX = max(MAX, x[i - 1] + D)
            MAX = max(MAX, D + x[i])
print(MAX)
0