結果

問題 No.204 ゴールデン・ウィーク(2)
ユーザー mlihua09mlihua09
提出日時 2020-09-16 18:23:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 38 ms / 1,000 ms
コード長 508 bytes
コンパイル時間 139 ms
コンパイル使用メモリ 82,496 KB
実行使用メモリ 59,680 KB
最終ジャッジ日時 2024-06-22 03:25:55
合計ジャッジ時間 2,947 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
53,180 KB
testcase_01 AC 34 ms
57,828 KB
testcase_02 AC 32 ms
52,808 KB
testcase_03 AC 36 ms
52,284 KB
testcase_04 AC 35 ms
53,776 KB
testcase_05 AC 35 ms
53,508 KB
testcase_06 AC 32 ms
52,756 KB
testcase_07 AC 37 ms
59,036 KB
testcase_08 AC 38 ms
59,464 KB
testcase_09 AC 37 ms
58,556 KB
testcase_10 AC 36 ms
57,972 KB
testcase_11 AC 34 ms
53,328 KB
testcase_12 AC 32 ms
52,440 KB
testcase_13 AC 37 ms
59,680 KB
testcase_14 AC 33 ms
52,596 KB
testcase_15 AC 37 ms
59,380 KB
testcase_16 AC 32 ms
52,708 KB
testcase_17 AC 32 ms
52,444 KB
testcase_18 AC 34 ms
58,900 KB
testcase_19 AC 34 ms
59,488 KB
testcase_20 AC 34 ms
58,244 KB
testcase_21 AC 36 ms
58,840 KB
testcase_22 AC 35 ms
58,720 KB
testcase_23 AC 34 ms
52,728 KB
testcase_24 AC 32 ms
53,424 KB
testcase_25 AC 33 ms
52,620 KB
testcase_26 AC 32 ms
53,444 KB
testcase_27 AC 36 ms
53,148 KB
testcase_28 AC 38 ms
59,176 KB
testcase_29 AC 33 ms
52,732 KB
testcase_30 AC 32 ms
52,248 KB
testcase_31 AC 32 ms
52,988 KB
testcase_32 AC 32 ms
52,204 KB
testcase_33 AC 36 ms
58,244 KB
testcase_34 AC 31 ms
52,816 KB
testcase_35 AC 31 ms
53,476 KB
testcase_36 AC 32 ms
54,152 KB
testcase_37 AC 33 ms
52,524 KB
testcase_38 AC 33 ms
53,080 KB
testcase_39 AC 34 ms
52,336 KB
testcase_40 AC 33 ms
53,848 KB
testcase_41 AC 33 ms
52,468 KB
testcase_42 AC 36 ms
59,004 KB
testcase_43 AC 32 ms
52,252 KB
testcase_44 AC 32 ms
53,228 KB
testcase_45 AC 32 ms
52,208 KB
testcase_46 AC 33 ms
53,012 KB
testcase_47 AC 36 ms
59,628 KB
testcase_48 AC 33 ms
52,868 KB
権限があれば一括ダウンロードができます

ソースコード

diff #


D = int(input())

X = [0] * D + [0 if i == 'x' else 1 for i in input()] + [0 if i == 'x' else 1 for i in input()] + [0] * (D + 1)

ans = 0

for i in range(0, len(X) - 1):
    
    x = X.copy()
    for j in range(i, min(len(x) - 1, i + D)):
        if x[j] == 0:
            x[j] = 1
        else:
            break
        
    a = 0
    b = 0
    for j in x:
        if j == 1:
            b += 1
        else:
            a = max(a, b)
            b = 0
            
    ans = max(ans, a)
    
print(ans)
0