結果

問題 No.204 ゴールデン・ウィーク(2)
ユーザー gorugo30gorugo30
提出日時 2021-03-17 20:38:59
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 561 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 82,208 KB
実行使用メモリ 54,352 KB
最終ジャッジ日時 2024-11-15 15:17:19
合計ジャッジ時間 3,289 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 38 ms
52,352 KB
testcase_02 AC 39 ms
52,480 KB
testcase_03 AC 39 ms
51,968 KB
testcase_04 AC 38 ms
51,968 KB
testcase_05 AC 39 ms
52,608 KB
testcase_06 AC 38 ms
51,968 KB
testcase_07 AC 39 ms
52,352 KB
testcase_08 WA -
testcase_09 AC 37 ms
52,096 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 38 ms
51,840 KB
testcase_13 AC 39 ms
52,352 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 38 ms
51,712 KB
testcase_19 WA -
testcase_20 AC 38 ms
52,096 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 37 ms
52,096 KB
testcase_26 AC 38 ms
52,096 KB
testcase_27 AC 37 ms
52,096 KB
testcase_28 AC 38 ms
52,224 KB
testcase_29 AC 37 ms
51,968 KB
testcase_30 AC 38 ms
51,840 KB
testcase_31 AC 39 ms
52,480 KB
testcase_32 AC 39 ms
52,088 KB
testcase_33 WA -
testcase_34 AC 38 ms
51,968 KB
testcase_35 AC 38 ms
52,096 KB
testcase_36 AC 37 ms
52,480 KB
testcase_37 AC 39 ms
52,224 KB
testcase_38 AC 38 ms
52,224 KB
testcase_39 AC 37 ms
51,968 KB
testcase_40 AC 38 ms
52,224 KB
testcase_41 AC 38 ms
51,968 KB
testcase_42 WA -
testcase_43 AC 39 ms
52,224 KB
testcase_44 AC 38 ms
51,816 KB
testcase_45 AC 38 ms
52,224 KB
testcase_46 AC 38 ms
52,096 KB
testcase_47 WA -
testcase_48 AC 37 ms
51,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

D = int(input())
C = ["x"] * D + list(input()) + list(input()) + ["x"] * D
ans = 0
for i in range(1, 14 + D + 1):
    if "o" * i in "".join(C):
        ans = max(ans, i)
for st in range(15):
    l = 0
    for i in range(1, D + 1):
        if "x" * i == "".join(C[st: st + i]):
            l = max(l, i)
    E = []
    for i in range(len(C)):
        if st <= i < st + l:
            E.append("o")
        else:
            E.append(C[i])
    for i in range(21, 0, -1):
        if "o" * i in "".join(E):
            ans = max(ans, i)
            break
print(ans)
0