結果

問題 No.2035 Tunnel
ユーザー neginagineginagi
提出日時 2022-08-19 13:13:33
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 714 bytes
コンパイル時間 405 ms
コンパイル使用メモリ 81,916 KB
実行使用メモリ 116,916 KB
最終ジャッジ日時 2024-10-07 17:49:35
合計ジャッジ時間 6,714 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
86,412 KB
testcase_01 WA -
testcase_02 AC 124 ms
86,564 KB
testcase_03 AC 124 ms
86,408 KB
testcase_04 AC 122 ms
86,288 KB
testcase_05 AC 169 ms
116,824 KB
testcase_06 AC 171 ms
116,864 KB
testcase_07 AC 168 ms
116,916 KB
testcase_08 WA -
testcase_09 AC 161 ms
116,804 KB
testcase_10 AC 163 ms
116,284 KB
testcase_11 WA -
testcase_12 AC 175 ms
114,224 KB
testcase_13 AC 144 ms
90,640 KB
testcase_14 WA -
testcase_15 AC 169 ms
111,052 KB
testcase_16 AC 158 ms
106,532 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 167 ms
111,220 KB
testcase_21 AC 150 ms
98,648 KB
testcase_22 AC 151 ms
98,516 KB
testcase_23 AC 142 ms
92,228 KB
testcase_24 AC 156 ms
103,000 KB
testcase_25 AC 159 ms
106,828 KB
testcase_26 WA -
testcase_27 AC 167 ms
113,708 KB
testcase_28 AC 153 ms
100,200 KB
testcase_29 WA -
testcase_30 AC 144 ms
91,280 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())))
ans = 0
ad = 0
dbl = False
for i in range(n)[::-1]:
    ans += 1
    if s[i]:
        if dbl:
            ad += 1
        else:
            dbl = True
    else:
        if dbl:
            dbl = False
        else:
            ad = max(0, ad - 1)
print(ans + ad)
0