結果

問題 No.2035 Tunnel
ユーザー taiga0629kyoprotaiga0629kyopro
提出日時 2022-08-12 21:36:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 76 ms / 2,000 ms
コード長 359 bytes
コンパイル時間 177 ms
コンパイル使用メモリ 82,164 KB
実行使用メモリ 101,500 KB
最終ジャッジ日時 2024-09-23 01:19:37
合計ジャッジ時間 2,872 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,300 KB
testcase_01 AC 37 ms
52,736 KB
testcase_02 AC 37 ms
52,556 KB
testcase_03 AC 38 ms
53,776 KB
testcase_04 AC 38 ms
51,688 KB
testcase_05 AC 72 ms
97,192 KB
testcase_06 AC 73 ms
96,560 KB
testcase_07 AC 76 ms
97,412 KB
testcase_08 AC 52 ms
76,044 KB
testcase_09 AC 53 ms
76,108 KB
testcase_10 AC 73 ms
101,500 KB
testcase_11 AC 63 ms
83,864 KB
testcase_12 AC 69 ms
88,704 KB
testcase_13 AC 48 ms
63,272 KB
testcase_14 AC 51 ms
67,872 KB
testcase_15 AC 67 ms
86,152 KB
testcase_16 AC 60 ms
78,656 KB
testcase_17 AC 45 ms
60,620 KB
testcase_18 AC 47 ms
62,584 KB
testcase_19 AC 53 ms
69,732 KB
testcase_20 AC 64 ms
85,104 KB
testcase_21 AC 53 ms
72,652 KB
testcase_22 AC 57 ms
73,164 KB
testcase_23 AC 48 ms
65,748 KB
testcase_24 AC 58 ms
79,384 KB
testcase_25 AC 62 ms
83,652 KB
testcase_26 AC 62 ms
81,160 KB
testcase_27 AC 70 ms
92,632 KB
testcase_28 AC 56 ms
74,536 KB
testcase_29 AC 48 ms
65,684 KB
testcase_30 AC 47 ms
65,372 KB
権限があれば一括ダウンロードができます

ソースコード

diff #


n=int(input())
s=list(input())
nod=[]
for i in range(n):
    if s[i]=="#":
        nod.append(i+1)
dp=[-1]*(n+3)
for ind in range(len(nod)-1,-1,-1):
    i=nod[ind]
    if ind==len(nod)-1:
        dp[i]=n-i+1
        continue
    j=nod[ind+1]
    t=dp[j]-1
    ni=i+t
    if ni<n-1:
        dp[i]=t+(n-ni+1)
    else:
        dp[i]=dp[j]+2
print(dp[nod[0]])
0