結果

問題 No.1765 While Shining
ユーザー irumo8202irumo8202
提出日時 2022-01-27 18:16:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 130 ms / 2,000 ms
コード長 676 bytes
コンパイル時間 676 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 104,576 KB
最終ジャッジ日時 2024-06-07 15:01:31
合計ジャッジ時間 4,632 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
63,104 KB
testcase_01 AC 56 ms
63,104 KB
testcase_02 AC 55 ms
62,848 KB
testcase_03 AC 59 ms
62,720 KB
testcase_04 AC 59 ms
63,616 KB
testcase_05 AC 58 ms
63,232 KB
testcase_06 AC 57 ms
63,488 KB
testcase_07 AC 57 ms
63,488 KB
testcase_08 AC 62 ms
64,256 KB
testcase_09 AC 109 ms
92,928 KB
testcase_10 AC 124 ms
104,320 KB
testcase_11 AC 114 ms
98,136 KB
testcase_12 AC 123 ms
100,992 KB
testcase_13 AC 114 ms
98,132 KB
testcase_14 AC 129 ms
104,576 KB
testcase_15 AC 128 ms
104,128 KB
testcase_16 AC 125 ms
104,556 KB
testcase_17 AC 124 ms
104,192 KB
testcase_18 AC 128 ms
104,380 KB
testcase_19 AC 127 ms
104,576 KB
testcase_20 AC 128 ms
104,508 KB
testcase_21 AC 130 ms
104,576 KB
testcase_22 AC 125 ms
104,192 KB
testcase_23 AC 124 ms
104,532 KB
testcase_24 AC 118 ms
104,192 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