結果

問題 No.1765 While Shining
ユーザー irumo8202irumo8202
提出日時 2022-01-27 18:16:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 120 ms / 2,000 ms
コード長 676 bytes
コンパイル時間 277 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 104,704 KB
最終ジャッジ日時 2024-12-25 20:57:54
合計ジャッジ時間 4,052 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
63,232 KB
testcase_01 AC 52 ms
63,104 KB
testcase_02 AC 53 ms
63,104 KB
testcase_03 AC 53 ms
63,104 KB
testcase_04 AC 53 ms
63,104 KB
testcase_05 AC 55 ms
63,360 KB
testcase_06 AC 51 ms
63,488 KB
testcase_07 AC 52 ms
63,040 KB
testcase_08 AC 58 ms
64,512 KB
testcase_09 AC 102 ms
92,908 KB
testcase_10 AC 120 ms
104,624 KB
testcase_11 AC 104 ms
98,304 KB
testcase_12 AC 111 ms
101,120 KB
testcase_13 AC 106 ms
98,432 KB
testcase_14 AC 118 ms
104,244 KB
testcase_15 AC 120 ms
104,320 KB
testcase_16 AC 119 ms
104,144 KB
testcase_17 AC 111 ms
104,320 KB
testcase_18 AC 113 ms
104,704 KB
testcase_19 AC 114 ms
104,088 KB
testcase_20 AC 115 ms
104,180 KB
testcase_21 AC 115 ms
104,636 KB
testcase_22 AC 117 ms
104,192 KB
testcase_23 AC 117 ms
104,704 KB
testcase_24 AC 118 ms
104,332 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split()))

import re


def get_idxs(string, word):
    idxs = []

    for res in re.finditer(word, string):
        idxs.append(res.span()[0])

    return idxs


inds = get_idxs("".join(map(str, A)), "1")

ans = [0] * len(inds)
for i in range(len(inds))[::-1]:
    if i == len(inds) - 1:
        if inds[i] == N - 1:
            continue
        elif inds[i] == N - 2:
            ans[i] = 1
        else:
            ans[i] = 2
    else:
        if inds[i] + 2 == inds[i + 1]:
            ans[i] += 2 + ans[i + 1]
        elif inds[i] + 1 == inds[i + 1]:
            ans[i] = 1
        else:
            ans[i] = 2

print(sum(ans))
0