結果

問題 No.2035 Tunnel
ユーザー sotanishysotanishy
提出日時 2022-08-12 21:31:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 56 ms / 2,000 ms
コード長 306 bytes
コンパイル時間 233 ms
コンパイル使用メモリ 81,776 KB
実行使用メモリ 64,448 KB
最終ジャッジ日時 2023-10-24 08:22:37
合計ジャッジ時間 2,843 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,416 KB
testcase_01 AC 39 ms
53,416 KB
testcase_02 AC 39 ms
53,416 KB
testcase_03 AC 39 ms
53,416 KB
testcase_04 AC 38 ms
53,416 KB
testcase_05 AC 54 ms
62,296 KB
testcase_06 AC 52 ms
62,292 KB
testcase_07 AC 51 ms
62,300 KB
testcase_08 AC 46 ms
60,220 KB
testcase_09 AC 47 ms
60,220 KB
testcase_10 AC 47 ms
60,224 KB
testcase_11 AC 54 ms
64,184 KB
testcase_12 AC 56 ms
64,448 KB
testcase_13 AC 49 ms
61,672 KB
testcase_14 AC 51 ms
63,848 KB
testcase_15 AC 55 ms
64,220 KB
testcase_16 AC 51 ms
62,040 KB
testcase_17 AC 47 ms
61,668 KB
testcase_18 AC 51 ms
61,672 KB
testcase_19 AC 51 ms
63,848 KB
testcase_20 AC 53 ms
62,136 KB
testcase_21 AC 49 ms
61,668 KB
testcase_22 AC 49 ms
61,664 KB
testcase_23 AC 47 ms
61,664 KB
testcase_24 AC 50 ms
61,964 KB
testcase_25 AC 51 ms
62,048 KB
testcase_26 AC 50 ms
62,016 KB
testcase_27 AC 52 ms
62,204 KB
testcase_28 AC 49 ms
61,664 KB
testcase_29 AC 48 ms
61,668 KB
testcase_30 AC 48 ms
61,668 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N = int(input())
S = input().rstrip()
ans = 0
x = 0
for i in range(N)[::-1]:
    if S[i] == '.':
        if i < N-1 and S[i+1] == '.':
            x = max(0, x - 1)
        continue
    if i < N-1 and S[i+1] == '#':
        x += 1
    ans = max(ans, N-i+x)
print(ans)
0