結果

問題 No.2035 Tunnel
ユーザー neginagineginagi
提出日時 2022-08-19 13:16:02
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 741 bytes
コンパイル時間 232 ms
コンパイル使用メモリ 82,072 KB
実行使用メモリ 117,156 KB
最終ジャッジ日時 2024-10-07 17:53:12
合計ジャッジ時間 5,927 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
86,720 KB
testcase_01 AC 122 ms
86,332 KB
testcase_02 AC 123 ms
86,596 KB
testcase_03 AC 116 ms
86,744 KB
testcase_04 AC 122 ms
86,724 KB
testcase_05 AC 170 ms
116,476 KB
testcase_06 AC 156 ms
116,636 KB
testcase_07 AC 152 ms
116,908 KB
testcase_08 AC 148 ms
117,156 KB
testcase_09 AC 150 ms
116,484 KB
testcase_10 AC 150 ms
116,952 KB
testcase_11 WA -
testcase_12 AC 160 ms
114,308 KB
testcase_13 AC 127 ms
90,392 KB
testcase_14 WA -
testcase_15 AC 154 ms
111,368 KB
testcase_16 AC 150 ms
106,844 KB
testcase_17 WA -
testcase_18 AC 128 ms
89,952 KB
testcase_19 AC 143 ms
98,036 KB
testcase_20 AC 154 ms
110,932 KB
testcase_21 AC 138 ms
98,652 KB
testcase_22 AC 137 ms
98,760 KB
testcase_23 AC 133 ms
92,080 KB
testcase_24 AC 145 ms
102,816 KB
testcase_25 AC 147 ms
106,960 KB
testcase_26 AC 140 ms
104,472 KB
testcase_27 AC 152 ms
113,524 KB
testcase_28 AC 144 ms
100,136 KB
testcase_29 WA -
testcase_30 AC 133 ms
91,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
sys.setrecursionlimit(10 ** 7)
INF = float("INF")
MOD = 10 ** 9 + 7
MOD2 = 998244353
from heapq import heappop, heappush
import math
from collections import Counter, deque
from itertools import accumulate, combinations, combinations_with_replacement, permutations
from bisect import bisect_left, bisect_right
import decimal

n = int(input())
s = list(map(lambda x : 1 if x == "#" else 0, list(input().rstrip())))
ad = 0
dbl = False
last = n - 1
for i in range(n)[::-1]:
    if s[i]:
        last = i
    if s[i]:
        if dbl:
            ad += 1
        else:
            dbl = True
    else:
        if dbl:
            dbl = False
        else:
            ad = max(0, ad - 1)
print(n - last + ad)
0