結果

問題 No.204 ゴールデン・ウィーク(2)
ユーザー ntudantuda
提出日時 2024-05-30 22:03:06
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 670 bytes
コンパイル時間 504 ms
コンパイル使用メモリ 82,516 KB
実行使用メモリ 54,068 KB
最終ジャッジ日時 2024-05-30 22:03:11
合計ジャッジ時間 4,093 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,600 KB
testcase_01 AC 32 ms
53,372 KB
testcase_02 AC 35 ms
52,956 KB
testcase_03 WA -
testcase_04 AC 33 ms
54,052 KB
testcase_05 AC 33 ms
52,624 KB
testcase_06 AC 33 ms
52,360 KB
testcase_07 AC 33 ms
52,492 KB
testcase_08 AC 34 ms
52,424 KB
testcase_09 AC 35 ms
52,336 KB
testcase_10 AC 33 ms
53,012 KB
testcase_11 AC 32 ms
52,976 KB
testcase_12 WA -
testcase_13 AC 33 ms
52,932 KB
testcase_14 AC 33 ms
52,480 KB
testcase_15 AC 36 ms
52,268 KB
testcase_16 AC 35 ms
52,480 KB
testcase_17 AC 38 ms
52,376 KB
testcase_18 AC 37 ms
52,200 KB
testcase_19 AC 36 ms
53,508 KB
testcase_20 AC 37 ms
53,024 KB
testcase_21 AC 37 ms
51,936 KB
testcase_22 AC 38 ms
53,184 KB
testcase_23 AC 36 ms
52,628 KB
testcase_24 AC 36 ms
52,892 KB
testcase_25 AC 34 ms
52,864 KB
testcase_26 AC 35 ms
52,960 KB
testcase_27 AC 35 ms
52,936 KB
testcase_28 AC 39 ms
52,484 KB
testcase_29 AC 34 ms
53,120 KB
testcase_30 AC 35 ms
54,068 KB
testcase_31 AC 34 ms
53,088 KB
testcase_32 AC 35 ms
53,084 KB
testcase_33 AC 32 ms
52,736 KB
testcase_34 AC 33 ms
53,096 KB
testcase_35 AC 32 ms
53,248 KB
testcase_36 AC 33 ms
52,504 KB
testcase_37 AC 34 ms
52,616 KB
testcase_38 AC 32 ms
52,452 KB
testcase_39 AC 34 ms
52,336 KB
testcase_40 AC 33 ms
52,932 KB
testcase_41 AC 34 ms
53,216 KB
testcase_42 AC 33 ms
53,620 KB
testcase_43 AC 34 ms
52,416 KB
testcase_44 AC 33 ms
52,440 KB
testcase_45 AC 36 ms
52,096 KB
testcase_46 AC 37 ms
52,860 KB
testcase_47 AC 37 ms
53,304 KB
testcase_48 AC 32 ms
52,992 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)
ans = 0
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])
print(ans)
0