結果

問題 No.2035 Tunnel
ユーザー ikomaikoma
提出日時 2022-08-12 21:43:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 54 ms / 2,000 ms
コード長 219 bytes
コンパイル時間 246 ms
コンパイル使用メモリ 81,676 KB
実行使用メモリ 62,316 KB
最終ジャッジ日時 2023-10-24 09:08:40
合計ジャッジ時間 2,744 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,448 KB
testcase_01 AC 39 ms
53,448 KB
testcase_02 AC 39 ms
53,448 KB
testcase_03 AC 38 ms
53,448 KB
testcase_04 AC 39 ms
53,448 KB
testcase_05 AC 50 ms
62,292 KB
testcase_06 AC 50 ms
62,292 KB
testcase_07 AC 51 ms
62,316 KB
testcase_08 AC 39 ms
54,068 KB
testcase_09 AC 45 ms
60,232 KB
testcase_10 AC 44 ms
60,232 KB
testcase_11 AC 51 ms
62,140 KB
testcase_12 AC 52 ms
62,272 KB
testcase_13 AC 45 ms
59,616 KB
testcase_14 AC 47 ms
61,664 KB
testcase_15 AC 54 ms
62,176 KB
testcase_16 AC 49 ms
62,036 KB
testcase_17 AC 44 ms
59,612 KB
testcase_18 AC 46 ms
61,672 KB
testcase_19 AC 49 ms
61,676 KB
testcase_20 AC 51 ms
62,140 KB
testcase_21 AC 47 ms
61,664 KB
testcase_22 AC 47 ms
61,664 KB
testcase_23 AC 46 ms
59,616 KB
testcase_24 AC 48 ms
61,960 KB
testcase_25 AC 48 ms
62,044 KB
testcase_26 AC 48 ms
62,016 KB
testcase_27 AC 50 ms
62,204 KB
testcase_28 AC 47 ms
61,664 KB
testcase_29 AC 45 ms
59,616 KB
testcase_30 AC 46 ms
59,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
S=input().strip()

i = S.index("#")
ans = N - i
cnt=0
mx=0
for i in range(N-1,i-1,-1):
    if S[i]=="#":
        cnt+=1
    else:
        cnt-=1
    cnt = max(0,cnt)
    mx = max(mx,cnt)

print(ans+cnt-1)
0