結果

問題 No.2035 Tunnel
ユーザー gr1msl3ygr1msl3y
提出日時 2022-08-15 22:47:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 58 ms / 2,000 ms
コード長 166 bytes
コンパイル時間 151 ms
コンパイル使用メモリ 82,420 KB
実行使用メモリ 75,776 KB
最終ジャッジ日時 2024-10-02 10:36:44
合計ジャッジ時間 2,646 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,584 KB
testcase_01 AC 41 ms
51,712 KB
testcase_02 AC 41 ms
52,096 KB
testcase_03 AC 37 ms
51,840 KB
testcase_04 AC 37 ms
51,712 KB
testcase_05 AC 56 ms
75,520 KB
testcase_06 AC 56 ms
75,648 KB
testcase_07 AC 58 ms
75,776 KB
testcase_08 AC 39 ms
53,248 KB
testcase_09 AC 52 ms
75,392 KB
testcase_10 AC 45 ms
59,648 KB
testcase_11 AC 56 ms
75,652 KB
testcase_12 AC 57 ms
75,640 KB
testcase_13 AC 44 ms
60,800 KB
testcase_14 AC 46 ms
64,512 KB
testcase_15 AC 55 ms
75,692 KB
testcase_16 AC 50 ms
72,064 KB
testcase_17 AC 43 ms
59,648 KB
testcase_18 AC 42 ms
60,288 KB
testcase_19 AC 48 ms
65,792 KB
testcase_20 AC 55 ms
75,776 KB
testcase_21 AC 46 ms
66,176 KB
testcase_22 AC 47 ms
66,432 KB
testcase_23 AC 45 ms
61,696 KB
testcase_24 AC 48 ms
69,760 KB
testcase_25 AC 49 ms
72,448 KB
testcase_26 AC 49 ms
71,168 KB
testcase_27 AC 57 ms
75,392 KB
testcase_28 AC 48 ms
67,200 KB
testcase_29 AC 46 ms
62,464 KB
testcase_30 AC 45 ms
61,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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