結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,672 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 37 ms
52,312 KB
testcase_05 AC 37 ms
52,456 KB
testcase_06 AC 37 ms
53,168 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 37 ms
52,204 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 36 ms
53,488 KB
testcase_17 AC 36 ms
53,280 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 36 ms
52,556 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 37 ms
53,084 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 38 ms
52,860 KB
testcase_30 AC 36 ms
52,984 KB
testcase_31 AC 36 ms
53,348 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 37 ms
53,948 KB
testcase_35 AC 37 ms
53,264 KB
testcase_36 AC 37 ms
52,464 KB
testcase_37 AC 37 ms
52,720 KB
testcase_38 AC 38 ms
52,648 KB
testcase_39 WA -
testcase_40 AC 37 ms
53,124 KB
testcase_41 AC 37 ms
52,248 KB
testcase_42 WA -
testcase_43 AC 37 ms
53,776 KB
testcase_44 AC 38 ms
52,200 KB
testcase_45 AC 37 ms
52,404 KB
testcase_46 AC 37 ms
54,020 KB
testcase_47 WA -
testcase_48 AC 37 ms
51,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #


D = int(input())

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

ans = 0

for i in range(0, 14- D):
    
    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