結果

問題 No.2035 Tunnel
ユーザー hir355hir355
提出日時 2022-08-12 21:24:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 50 ms / 2,000 ms
コード長 200 bytes
コンパイル時間 249 ms
コンパイル使用メモリ 82,280 KB
実行使用メモリ 62,148 KB
最終ジャッジ日時 2024-09-23 00:42:27
合計ジャッジ時間 2,594 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,628 KB
testcase_01 AC 38 ms
52,296 KB
testcase_02 AC 38 ms
52,128 KB
testcase_03 AC 39 ms
51,824 KB
testcase_04 AC 37 ms
52,108 KB
testcase_05 AC 47 ms
60,704 KB
testcase_06 AC 48 ms
60,980 KB
testcase_07 AC 48 ms
61,508 KB
testcase_08 AC 44 ms
59,836 KB
testcase_09 AC 44 ms
59,956 KB
testcase_10 AC 44 ms
59,760 KB
testcase_11 AC 48 ms
60,880 KB
testcase_12 AC 50 ms
62,148 KB
testcase_13 AC 43 ms
59,348 KB
testcase_14 AC 45 ms
60,520 KB
testcase_15 AC 47 ms
61,140 KB
testcase_16 AC 46 ms
60,768 KB
testcase_17 AC 43 ms
59,136 KB
testcase_18 AC 44 ms
60,672 KB
testcase_19 AC 45 ms
60,456 KB
testcase_20 AC 47 ms
60,508 KB
testcase_21 AC 44 ms
59,876 KB
testcase_22 AC 45 ms
60,356 KB
testcase_23 AC 43 ms
58,772 KB
testcase_24 AC 45 ms
61,196 KB
testcase_25 AC 45 ms
60,412 KB
testcase_26 AC 45 ms
60,932 KB
testcase_27 AC 46 ms
60,512 KB
testcase_28 AC 44 ms
59,320 KB
testcase_29 AC 43 ms
59,628 KB
testcase_30 AC 43 ms
60,484 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
s = input()
t = 0
ans = 0
for i in range(n - 1, -1, -1):
    if s[i] == '#':
        ans = max(ans, n - i + t)
        t += 1
    else:
        if t > 0:
            t -= 1
print(ans)
0