結果

問題 No.2035 Tunnel
ユーザー ntudantuda
提出日時 2022-08-16 22:22:05
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 125 ms / 2,000 ms
コード長 259 bytes
コンパイル時間 295 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 23,080 KB
最終ジャッジ日時 2024-10-03 15:56:37
合計ジャッジ時間 3,803 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,880 KB
testcase_01 AC 25 ms
10,752 KB
testcase_02 AC 26 ms
10,752 KB
testcase_03 AC 24 ms
10,752 KB
testcase_04 AC 25 ms
10,752 KB
testcase_05 AC 120 ms
22,864 KB
testcase_06 AC 125 ms
23,080 KB
testcase_07 AC 121 ms
22,996 KB
testcase_08 AC 78 ms
13,648 KB
testcase_09 AC 120 ms
22,996 KB
testcase_10 AC 118 ms
22,996 KB
testcase_11 AC 102 ms
20,280 KB
testcase_12 AC 120 ms
21,672 KB
testcase_13 AC 36 ms
11,776 KB
testcase_14 AC 48 ms
12,928 KB
testcase_15 AC 101 ms
15,108 KB
testcase_16 AC 86 ms
17,352 KB
testcase_17 AC 28 ms
10,752 KB
testcase_18 AC 32 ms
11,520 KB
testcase_19 AC 54 ms
13,952 KB
testcase_20 AC 101 ms
19,700 KB
testcase_21 AC 59 ms
15,360 KB
testcase_22 AC 61 ms
15,488 KB
testcase_23 AC 39 ms
12,416 KB
testcase_24 AC 73 ms
16,896 KB
testcase_25 AC 88 ms
18,688 KB
testcase_26 AC 81 ms
17,920 KB
testcase_27 AC 110 ms
21,648 KB
testcase_28 AC 65 ms
15,744 KB
testcase_29 AC 41 ms
12,544 KB
testcase_30 AC 36 ms
12,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
S = input()

A = [0] * N
i = 0
while S[i] == ".":
    i += 1
S = S[i:]
N = len(S)

for i, s in enumerate(S):
    if s == "#":
        A[i] = A[i - 1] + 1
    else:
        A[i] = A[i - 1] - 1

x = S.index("#")
y = max(A)
print(N - x + y - 1)
0