結果

問題 No.204 ゴールデン・ウィーク(2)
ユーザー rlangevinrlangevin
提出日時 2023-01-09 23:01:44
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 661 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 82,284 KB
実行使用メモリ 67,348 KB
最終ジャッジ日時 2024-12-18 00:27:25
合計ジャッジ時間 3,755 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
62,144 KB
testcase_01 AC 55 ms
64,736 KB
testcase_02 AC 48 ms
63,004 KB
testcase_03 AC 47 ms
62,160 KB
testcase_04 AC 43 ms
60,668 KB
testcase_05 AC 47 ms
63,264 KB
testcase_06 AC 42 ms
59,536 KB
testcase_07 AC 54 ms
65,032 KB
testcase_08 AC 59 ms
67,348 KB
testcase_09 AC 53 ms
64,600 KB
testcase_10 AC 53 ms
65,540 KB
testcase_11 AC 49 ms
63,600 KB
testcase_12 AC 48 ms
62,880 KB
testcase_13 AC 50 ms
64,536 KB
testcase_14 AC 49 ms
62,688 KB
testcase_15 AC 53 ms
63,920 KB
testcase_16 AC 50 ms
63,044 KB
testcase_17 AC 49 ms
63,800 KB
testcase_18 AC 51 ms
64,516 KB
testcase_19 AC 54 ms
64,812 KB
testcase_20 AC 53 ms
64,908 KB
testcase_21 AC 52 ms
63,844 KB
testcase_22 WA -
testcase_23 AC 49 ms
63,916 KB
testcase_24 AC 47 ms
64,212 KB
testcase_25 AC 51 ms
63,108 KB
testcase_26 AC 45 ms
62,096 KB
testcase_27 AC 47 ms
63,804 KB
testcase_28 AC 50 ms
64,200 KB
testcase_29 AC 44 ms
61,296 KB
testcase_30 AC 41 ms
59,840 KB
testcase_31 AC 44 ms
61,748 KB
testcase_32 AC 44 ms
59,352 KB
testcase_33 AC 51 ms
63,792 KB
testcase_34 AC 43 ms
59,740 KB
testcase_35 AC 37 ms
52,260 KB
testcase_36 AC 35 ms
53,096 KB
testcase_37 AC 47 ms
61,836 KB
testcase_38 AC 49 ms
62,484 KB
testcase_39 AC 42 ms
60,924 KB
testcase_40 AC 34 ms
52,692 KB
testcase_41 AC 42 ms
59,984 KB
testcase_42 AC 50 ms
64,440 KB
testcase_43 AC 34 ms
53,304 KB
testcase_44 AC 36 ms
52,960 KB
testcase_45 AC 47 ms
62,600 KB
testcase_46 AC 52 ms
65,220 KB
testcase_47 AC 53 ms
65,292 KB
testcase_48 AC 42 ms
61,104 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 - d):
        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