結果

問題 No.1505 Zero-Product Ranges
ユーザー keijakkeijak
提出日時 2021-05-14 23:33:44
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 136 ms / 2,000 ms
コード長 565 bytes
コンパイル時間 369 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 21,284 KB
最終ジャッジ日時 2024-10-02 05:34:44
合計ジャッジ時間 5,823 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 100 ms
14,652 KB
testcase_04 AC 106 ms
14,652 KB
testcase_05 AC 57 ms
12,288 KB
testcase_06 AC 56 ms
11,992 KB
testcase_07 AC 49 ms
11,776 KB
testcase_08 AC 53 ms
11,776 KB
testcase_09 AC 51 ms
11,776 KB
testcase_10 AC 51 ms
12,032 KB
testcase_11 AC 57 ms
12,016 KB
testcase_12 AC 48 ms
11,728 KB
testcase_13 AC 69 ms
12,732 KB
testcase_14 AC 64 ms
12,748 KB
testcase_15 AC 96 ms
14,068 KB
testcase_16 AC 132 ms
21,152 KB
testcase_17 AC 134 ms
21,160 KB
testcase_18 AC 136 ms
21,284 KB
testcase_19 AC 31 ms
10,624 KB
testcase_20 AC 29 ms
10,624 KB
testcase_21 AC 32 ms
10,624 KB
testcase_22 AC 134 ms
20,648 KB
testcase_23 AC 134 ms
20,464 KB
testcase_24 AC 125 ms
20,556 KB
testcase_25 AC 122 ms
20,144 KB
testcase_26 AC 130 ms
20,556 KB
testcase_27 AC 123 ms
20,296 KB
testcase_28 AC 125 ms
20,140 KB
testcase_29 AC 130 ms
20,876 KB
testcase_30 AC 134 ms
20,664 KB
testcase_31 AC 127 ms
20,164 KB
testcase_32 AC 79 ms
16,040 KB
testcase_33 AC 75 ms
15,372 KB
testcase_34 AC 83 ms
16,080 KB
testcase_35 AC 69 ms
14,780 KB
testcase_36 AC 70 ms
15,032 KB
testcase_37 AC 78 ms
15,756 KB
testcase_38 AC 74 ms
15,348 KB
testcase_39 AC 75 ms
15,504 KB
testcase_40 AC 78 ms
15,628 KB
testcase_41 AC 86 ms
16,708 KB
testcase_42 AC 36 ms
11,392 KB
testcase_43 AC 38 ms
11,520 KB
testcase_44 AC 37 ms
11,520 KB
testcase_45 AC 38 ms
11,648 KB
testcase_46 AC 35 ms
11,264 KB
testcase_47 AC 40 ms
11,648 KB
testcase_48 AC 35 ms
11,264 KB
testcase_49 AC 33 ms
11,008 KB
testcase_50 AC 36 ms
11,392 KB
testcase_51 AC 39 ms
11,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

try:
    import frosch

    frosch.hook()
except ImportError:
    pass


def dump(*a, **kw):
    print("\033[33m", *a, "\033[0m", **dict(file=sys.stderr, **kw))


def solve():
    n = int(sys.stdin.readline())
    a = [int(x) for x in sys.stdin.readline().split()]
    b = []
    for x in a:
        if b and b[-1][0] == x:
            b[-1][1] += 1
        else:
            b.append([x, 1])
    ones = 0
    for (k, v) in b:
        if k == 1:
            ones += v * (v + 1) // 2
    total = n * (n + 1) // 2
    return total - ones


print(solve())
0