結果

問題 No.2035 Tunnel
ユーザー ikomaikoma
提出日時 2022-08-12 21:37:00
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 204 bytes
コンパイル時間 148 ms
コンパイル使用メモリ 82,164 KB
実行使用メモリ 64,336 KB
最終ジャッジ日時 2024-09-23 01:22:54
合計ジャッジ時間 2,489 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,656 KB
testcase_01 AC 39 ms
53,012 KB
testcase_02 AC 40 ms
52,272 KB
testcase_03 AC 38 ms
51,948 KB
testcase_04 AC 37 ms
52,396 KB
testcase_05 AC 48 ms
62,156 KB
testcase_06 AC 47 ms
62,052 KB
testcase_07 AC 48 ms
63,184 KB
testcase_08 AC 44 ms
61,136 KB
testcase_09 AC 44 ms
60,068 KB
testcase_10 AC 44 ms
61,044 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 45 ms
61,504 KB
testcase_22 AC 44 ms
61,516 KB
testcase_23 AC 44 ms
60,292 KB
testcase_24 AC 48 ms
61,104 KB
testcase_25 AC 46 ms
62,568 KB
testcase_26 AC 45 ms
61,980 KB
testcase_27 AC 47 ms
62,176 KB
testcase_28 AC 45 ms
61,296 KB
testcase_29 WA -
testcase_30 AC 45 ms
59,664 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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


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

print(ans+mx-1)
0