結果

問題 No.2035 Tunnel
ユーザー first_vilfirst_vil
提出日時 2022-08-12 21:32:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 213 ms / 2,000 ms
コード長 737 bytes
コンパイル時間 217 ms
コンパイル使用メモリ 82,472 KB
実行使用メモリ 98,232 KB
最終ジャッジ日時 2024-09-23 01:05:31
合計ジャッジ時間 4,383 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,952 KB
testcase_01 AC 39 ms
53,200 KB
testcase_02 AC 38 ms
53,376 KB
testcase_03 AC 38 ms
53,352 KB
testcase_04 AC 40 ms
52,872 KB
testcase_05 AC 189 ms
93,232 KB
testcase_06 AC 186 ms
93,104 KB
testcase_07 AC 189 ms
92,964 KB
testcase_08 AC 44 ms
59,608 KB
testcase_09 AC 44 ms
59,848 KB
testcase_10 AC 213 ms
98,232 KB
testcase_11 AC 133 ms
84,112 KB
testcase_12 AC 147 ms
85,224 KB
testcase_13 AC 73 ms
75,636 KB
testcase_14 AC 87 ms
77,352 KB
testcase_15 AC 140 ms
83,828 KB
testcase_16 AC 115 ms
81,780 KB
testcase_17 AC 58 ms
70,080 KB
testcase_18 AC 71 ms
75,704 KB
testcase_19 AC 91 ms
78,372 KB
testcase_20 AC 133 ms
84,104 KB
testcase_21 AC 103 ms
80,956 KB
testcase_22 AC 105 ms
80,688 KB
testcase_23 AC 73 ms
76,856 KB
testcase_24 AC 122 ms
83,588 KB
testcase_25 AC 142 ms
85,980 KB
testcase_26 AC 131 ms
84,804 KB
testcase_27 AC 173 ms
90,956 KB
testcase_28 AC 108 ms
81,856 KB
testcase_29 AC 74 ms
77,044 KB
testcase_30 AC 70 ms
76,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

int1 = lambda x: int(x) - 1

# input = lambda: sys.stdin.buffer.readline()
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
i1 = lambda: int1(input())
mi = lambda: map(int, input().split())
mi1 = lambda: map(int1, input().split())
li = lambda: list(mi())
li1 = lambda: list(mi1())
lli = lambda n: [li() for _ in range(n)]

INF = float("inf")
mod = int(1e9 + 7)
# mod = 998244353

n = ii()
s = input()
a = [i for i in range(n)[::-1] if s[i] == "#"]


ng = 0
ok = int(1e18)
while ok - ng > 1:
    mid = ok + ng >> 1
    mn = INF
    pre = INF
    for x in a:
        mn = min(mn, x + mid, pre - 2)
        pre = min(x + mid, pre - 2)
    if mn >= n:
        ok = mid
    else:
        ng = mid
print(ok)
0