結果

問題 No.1505 Zero-Product Ranges
ユーザー kichi2004_kichi2004_
提出日時 2021-04-01 23:17:26
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 169 ms / 2,000 ms
コード長 1,211 bytes
コンパイル時間 196 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 16,304 KB
最終ジャッジ日時 2024-12-21 07:36:36
合計ジャッジ時間 7,113 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
11,520 KB
testcase_01 AC 41 ms
11,520 KB
testcase_02 AC 41 ms
11,520 KB
testcase_03 AC 159 ms
16,176 KB
testcase_04 AC 166 ms
16,140 KB
testcase_05 AC 90 ms
13,392 KB
testcase_06 AC 97 ms
12,800 KB
testcase_07 AC 76 ms
12,872 KB
testcase_08 AC 83 ms
13,024 KB
testcase_09 AC 79 ms
12,860 KB
testcase_10 AC 80 ms
13,008 KB
testcase_11 AC 90 ms
13,244 KB
testcase_12 AC 74 ms
12,772 KB
testcase_13 AC 109 ms
14,204 KB
testcase_14 AC 99 ms
13,980 KB
testcase_15 AC 151 ms
16,084 KB
testcase_16 AC 165 ms
16,176 KB
testcase_17 AC 169 ms
16,304 KB
testcase_18 AC 168 ms
16,180 KB
testcase_19 AC 41 ms
11,392 KB
testcase_20 AC 40 ms
11,520 KB
testcase_21 AC 41 ms
11,392 KB
testcase_22 AC 165 ms
14,728 KB
testcase_23 AC 161 ms
14,688 KB
testcase_24 AC 158 ms
16,076 KB
testcase_25 AC 160 ms
15,888 KB
testcase_26 AC 160 ms
16,084 KB
testcase_27 AC 159 ms
15,900 KB
testcase_28 AC 158 ms
15,920 KB
testcase_29 AC 163 ms
14,692 KB
testcase_30 AC 167 ms
14,632 KB
testcase_31 AC 162 ms
16,068 KB
testcase_32 AC 105 ms
13,948 KB
testcase_33 AC 101 ms
13,752 KB
testcase_34 AC 110 ms
13,284 KB
testcase_35 AC 95 ms
13,264 KB
testcase_36 AC 95 ms
13,420 KB
testcase_37 AC 101 ms
13,160 KB
testcase_38 AC 99 ms
13,620 KB
testcase_39 AC 101 ms
13,624 KB
testcase_40 AC 107 ms
13,160 KB
testcase_41 AC 110 ms
14,048 KB
testcase_42 AC 48 ms
11,776 KB
testcase_43 AC 51 ms
11,776 KB
testcase_44 AC 49 ms
11,776 KB
testcase_45 AC 49 ms
11,776 KB
testcase_46 AC 50 ms
11,648 KB
testcase_47 AC 52 ms
11,904 KB
testcase_48 AC 47 ms
11,648 KB
testcase_49 AC 43 ms
11,648 KB
testcase_50 AC 48 ms
11,776 KB
testcase_51 AC 52 ms
11,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
from typing import Iterator, Deque, Callable, Tuple
from sys import stdin

import itertools


class Scanner:
    _tokens: Deque[str]

    def __init__(self):
        self._tokens = deque()

    def read(self) -> str:
        if len(self._tokens) == 0:
            self._tokens.extend(stdin.readline().split())
        return self._tokens.popleft()

    def read_int(self) -> int:
        return int(self.read())

    def read_ints(self, n: int) -> Iterator[int]:
        return [self.read_int() for _ in range(n)]

    @staticmethod
    def readline(func: Callable = str):
        return map(func, stdin.readline().split())


cin = Scanner()


def main():
    n = cin.read_int()
    a = [*map(lambda x: bool(x), cin.read_ints(n))]
    ans_all = n * (n + 1) // 2

    a_start = -1
    for i in range(n):
        if a[i]:
            if a_start == -1:
                a_start = i
        else:
            if a_start != -1:
                tmp = i - a_start
                ans_all -= tmp * (tmp + 1) // 2
                a_start = -1

    if a_start != -1:
        tmp = n - a_start
        ans_all -= tmp * (tmp + 1) // 2

    print(ans_all)

if __name__ == '__main__':
    main()
0