結果

問題 No.204 ゴールデン・ウィーク(2)
ユーザー ntudantuda
提出日時 2024-05-30 22:09:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 46 ms / 1,000 ms
コード長 717 bytes
コンパイル時間 591 ms
コンパイル使用メモリ 82,504 KB
実行使用メモリ 53,868 KB
最終ジャッジ日時 2024-05-30 22:09:37
合計ジャッジ時間 3,852 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,372 KB
testcase_01 AC 33 ms
53,356 KB
testcase_02 AC 34 ms
52,964 KB
testcase_03 AC 32 ms
53,312 KB
testcase_04 AC 32 ms
52,960 KB
testcase_05 AC 32 ms
53,040 KB
testcase_06 AC 32 ms
53,560 KB
testcase_07 AC 33 ms
53,632 KB
testcase_08 AC 32 ms
53,564 KB
testcase_09 AC 35 ms
53,072 KB
testcase_10 AC 33 ms
52,768 KB
testcase_11 AC 33 ms
52,152 KB
testcase_12 AC 33 ms
52,948 KB
testcase_13 AC 34 ms
52,500 KB
testcase_14 AC 35 ms
52,212 KB
testcase_15 AC 33 ms
52,272 KB
testcase_16 AC 32 ms
52,580 KB
testcase_17 AC 32 ms
52,188 KB
testcase_18 AC 33 ms
52,160 KB
testcase_19 AC 33 ms
52,788 KB
testcase_20 AC 34 ms
52,208 KB
testcase_21 AC 35 ms
52,996 KB
testcase_22 AC 33 ms
51,996 KB
testcase_23 AC 32 ms
53,208 KB
testcase_24 AC 33 ms
53,480 KB
testcase_25 AC 33 ms
53,200 KB
testcase_26 AC 34 ms
53,292 KB
testcase_27 AC 33 ms
52,488 KB
testcase_28 AC 33 ms
53,652 KB
testcase_29 AC 46 ms
53,284 KB
testcase_30 AC 34 ms
52,160 KB
testcase_31 AC 32 ms
51,948 KB
testcase_32 AC 34 ms
52,408 KB
testcase_33 AC 33 ms
53,868 KB
testcase_34 AC 34 ms
52,728 KB
testcase_35 AC 32 ms
52,344 KB
testcase_36 AC 33 ms
52,604 KB
testcase_37 AC 32 ms
52,340 KB
testcase_38 AC 33 ms
52,944 KB
testcase_39 AC 32 ms
52,888 KB
testcase_40 AC 33 ms
52,684 KB
testcase_41 AC 34 ms
53,352 KB
testcase_42 AC 33 ms
52,552 KB
testcase_43 AC 34 ms
52,628 KB
testcase_44 AC 33 ms
53,708 KB
testcase_45 AC 33 ms
52,072 KB
testcase_46 AC 33 ms
52,072 KB
testcase_47 AC 33 ms
53,036 KB
testcase_48 AC 33 ms
52,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

D = int(input())
C = input()
C = C + input()
N = []
H = []

f = 0
for c in C:
    if f == 0:
        if c == "x":
            continue
        else:
            f = 1
            cnt = 1
    elif f == 1:
        if c == "o":
            cnt += 1
        else:
            H.append(cnt)
            f = 2
            cnt = 1
    elif f == 2:
        if c == "x":
            cnt += 1
        else:
            N.append((cnt))
            f = 1
            cnt = 1
if f == 1:
    H.append(cnt)
if len(H) == 0:
    print(D)
    exit()

ans = max(H[0] + D,H[-1] + D)
for i in range(len(N)):
    if N[i] <= D:
        ans = max(ans, H[i] + N[i] + H[i + 1])
    else:
        ans = max(ans, H[i] + D, H[i+1] + D)
print(ans)
0