結果

問題 No.204 ゴールデン・ウィーク(2)
ユーザー mlihua09mlihua09
提出日時 2020-09-16 18:19:19
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 437 bytes
コンパイル時間 265 ms
コンパイル使用メモリ 82,604 KB
実行使用メモリ 59,232 KB
最終ジャッジ日時 2024-06-22 03:25:20
合計ジャッジ時間 3,424 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 41 ms
58,184 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 37 ms
52,468 KB
testcase_05 AC 37 ms
52,564 KB
testcase_06 AC 37 ms
52,272 KB
testcase_07 AC 39 ms
59,232 KB
testcase_08 AC 37 ms
53,272 KB
testcase_09 AC 36 ms
53,192 KB
testcase_10 AC 40 ms
57,632 KB
testcase_11 WA -
testcase_12 AC 38 ms
52,324 KB
testcase_13 AC 39 ms
59,112 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 36 ms
52,960 KB
testcase_17 AC 39 ms
53,112 KB
testcase_18 AC 40 ms
54,024 KB
testcase_19 AC 39 ms
53,500 KB
testcase_20 AC 38 ms
52,648 KB
testcase_21 AC 37 ms
52,864 KB
testcase_22 AC 40 ms
57,792 KB
testcase_23 AC 37 ms
52,480 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 37 ms
51,936 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 37 ms
52,808 KB
testcase_30 AC 37 ms
52,868 KB
testcase_31 AC 37 ms
52,068 KB
testcase_32 AC 37 ms
53,008 KB
testcase_33 AC 41 ms
59,144 KB
testcase_34 AC 37 ms
52,280 KB
testcase_35 AC 36 ms
52,544 KB
testcase_36 AC 37 ms
54,348 KB
testcase_37 AC 36 ms
52,132 KB
testcase_38 AC 37 ms
53,132 KB
testcase_39 AC 37 ms
52,688 KB
testcase_40 AC 37 ms
52,508 KB
testcase_41 AC 37 ms
52,620 KB
testcase_42 AC 40 ms
58,992 KB
testcase_43 AC 36 ms
52,956 KB
testcase_44 AC 36 ms
53,616 KB
testcase_45 AC 37 ms
53,228 KB
testcase_46 AC 37 ms
52,460 KB
testcase_47 WA -
testcase_48 AC 38 ms
52,264 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) - D - 1):
    
    x = X.copy()
    for j in range(i, i + D):
        x[j] = 1
        
    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