結果

問題 No.2035 Tunnel
ユーザー asumo0729asumo0729
提出日時 2022-08-12 21:50:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 72 ms / 2,000 ms
コード長 937 bytes
コンパイル時間 242 ms
コンパイル使用メモリ 82,220 KB
実行使用メモリ 81,500 KB
最終ジャッジ日時 2024-09-23 02:09:52
合計ジャッジ時間 3,056 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
61,872 KB
testcase_01 AC 50 ms
61,960 KB
testcase_02 AC 50 ms
61,688 KB
testcase_03 AC 50 ms
62,516 KB
testcase_04 AC 50 ms
62,024 KB
testcase_05 AC 69 ms
80,956 KB
testcase_06 AC 72 ms
81,152 KB
testcase_07 AC 70 ms
81,500 KB
testcase_08 AC 65 ms
80,340 KB
testcase_09 AC 66 ms
80,392 KB
testcase_10 AC 66 ms
80,624 KB
testcase_11 AC 68 ms
77,668 KB
testcase_12 AC 72 ms
80,796 KB
testcase_13 AC 56 ms
66,248 KB
testcase_14 AC 58 ms
68,972 KB
testcase_15 AC 69 ms
78,892 KB
testcase_16 AC 63 ms
74,828 KB
testcase_17 AC 53 ms
64,752 KB
testcase_18 AC 55 ms
64,888 KB
testcase_19 AC 58 ms
70,572 KB
testcase_20 AC 66 ms
77,700 KB
testcase_21 AC 57 ms
69,520 KB
testcase_22 AC 59 ms
70,156 KB
testcase_23 AC 54 ms
66,696 KB
testcase_24 AC 60 ms
72,660 KB
testcase_25 AC 63 ms
75,680 KB
testcase_26 AC 61 ms
74,148 KB
testcase_27 AC 68 ms
79,400 KB
testcase_28 AC 58 ms
70,536 KB
testcase_29 AC 55 ms
66,908 KB
testcase_30 AC 53 ms
64,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from operator import itemgetter
from collections import defaultdict, deque
import heapq
from heapq import heapify, heappop, _heapify_max, heappush
from bisect import bisect_left, bisect_right
import math
import itertools
import copy

stdin=sys.stdin
#sys.setrecursionlimit(10 ** 7)
## import pypyjit
## pypyjit.set_param('max_unroll_recursion=-1')

ip=lambda: int(sp())
fp=lambda: float(sp())
lp=lambda:list(map(int,stdin.readline().split()))
sp=lambda:stdin.readline().rstrip()
Yp=lambda:print('Yes')
Np=lambda:print('No')
inf = 1 << 60
inf = float('inf')
mod = 10 ** 9 + 7
mod = 998244353
eps = 1e-9
sortkey1 = itemgetter(0)
sortkey2 = lambda x: (x[0], x[1])



###############################################################

N = ip()
S = list(sp())
S = S[::-1]
ans = -1
for i in range(N):
    if S[i] == '#':
        x = i + 1
        if x <= ans + 1:
            ans += 2
        else:
            ans = i + 1
print(ans)
0