結果

問題 No.2035 Tunnel
ユーザー gr1msl3ygr1msl3y
提出日時 2022-08-15 22:41:11
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 156 bytes
コンパイル時間 313 ms
コンパイル使用メモリ 82,248 KB
実行使用メモリ 76,052 KB
最終ジャッジ日時 2024-10-02 10:31:47
合計ジャッジ時間 2,638 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
54,092 KB
testcase_01 AC 31 ms
52,684 KB
testcase_02 AC 33 ms
52,372 KB
testcase_03 AC 32 ms
52,004 KB
testcase_04 AC 31 ms
52,856 KB
testcase_05 AC 50 ms
75,612 KB
testcase_06 AC 49 ms
75,368 KB
testcase_07 AC 53 ms
75,828 KB
testcase_08 AC 41 ms
61,148 KB
testcase_09 AC 45 ms
75,656 KB
testcase_10 AC 38 ms
60,104 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 43 ms
67,520 KB
testcase_22 AC 42 ms
68,368 KB
testcase_23 AC 40 ms
62,784 KB
testcase_24 AC 42 ms
70,696 KB
testcase_25 AC 44 ms
73,768 KB
testcase_26 AC 45 ms
72,436 KB
testcase_27 AC 50 ms
75,928 KB
testcase_28 AC 42 ms
68,772 KB
testcase_29 WA -
testcase_30 AC 43 ms
63,844 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
S = input()
ans = N-S.index('#')
v = -1
w = 0
for s in S:
    v += 1 if s == '#' else -1
    v = max(-1, v)
    w = max(v, w)
print(ans+w)
0