結果

問題 No.2035 Tunnel
ユーザー neginagineginagi
提出日時 2022-08-19 13:20:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 171 ms / 2,000 ms
コード長 799 bytes
コンパイル時間 287 ms
コンパイル使用メモリ 82,028 KB
実行使用メモリ 117,072 KB
最終ジャッジ日時 2024-10-07 17:58:26
合計ジャッジ時間 5,871 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
86,532 KB
testcase_01 AC 116 ms
86,532 KB
testcase_02 AC 116 ms
86,700 KB
testcase_03 AC 129 ms
87,024 KB
testcase_04 AC 123 ms
86,848 KB
testcase_05 AC 164 ms
116,612 KB
testcase_06 AC 170 ms
116,540 KB
testcase_07 AC 163 ms
117,072 KB
testcase_08 AC 159 ms
116,668 KB
testcase_09 AC 158 ms
116,612 KB
testcase_10 AC 158 ms
116,808 KB
testcase_11 AC 165 ms
111,268 KB
testcase_12 AC 171 ms
114,596 KB
testcase_13 AC 139 ms
90,728 KB
testcase_14 AC 148 ms
95,820 KB
testcase_15 AC 168 ms
111,788 KB
testcase_16 AC 162 ms
106,936 KB
testcase_17 AC 137 ms
89,336 KB
testcase_18 AC 139 ms
90,392 KB
testcase_19 AC 147 ms
98,024 KB
testcase_20 AC 158 ms
111,336 KB
testcase_21 AC 145 ms
98,900 KB
testcase_22 AC 147 ms
99,060 KB
testcase_23 AC 140 ms
92,208 KB
testcase_24 AC 153 ms
103,108 KB
testcase_25 AC 151 ms
106,584 KB
testcase_26 AC 149 ms
104,972 KB
testcase_27 AC 158 ms
113,808 KB
testcase_28 AC 143 ms
100,264 KB
testcase_29 AC 133 ms
92,364 KB
testcase_30 AC 130 ms
91,692 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
ad_buff = 0
dbl = False
last = n - 1
for i in range(n)[::-1]:
    if s[i]:
        last = i
        ad = max(0, ad - ad_buff)
        ad_buff = 0
    if s[i]:
        if dbl:
            ad += 1
        else:
            dbl = True
    else:
        if dbl:
            dbl = False
        else:
            ad_buff += 1
print(n - last + ad)
0