結果

問題 No.1505 Zero-Product Ranges
ユーザー tktk_snsntktk_snsn
提出日時 2021-05-14 23:30:54
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 152 ms / 2,000 ms
コード長 410 bytes
コンパイル時間 686 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 19,736 KB
最終ジャッジ日時 2024-10-02 05:30:34
合計ジャッジ時間 7,126 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,752 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 113 ms
14,748 KB
testcase_04 AC 110 ms
14,744 KB
testcase_05 AC 61 ms
12,288 KB
testcase_06 AC 62 ms
12,112 KB
testcase_07 AC 54 ms
11,840 KB
testcase_08 AC 57 ms
11,904 KB
testcase_09 AC 54 ms
11,904 KB
testcase_10 AC 55 ms
12,032 KB
testcase_11 AC 63 ms
12,004 KB
testcase_12 AC 51 ms
11,648 KB
testcase_13 AC 74 ms
12,800 KB
testcase_14 AC 69 ms
12,652 KB
testcase_15 AC 107 ms
14,020 KB
testcase_16 AC 149 ms
19,736 KB
testcase_17 AC 148 ms
19,736 KB
testcase_18 AC 149 ms
19,616 KB
testcase_19 AC 31 ms
10,752 KB
testcase_20 AC 31 ms
10,752 KB
testcase_21 AC 32 ms
10,752 KB
testcase_22 AC 147 ms
19,360 KB
testcase_23 AC 152 ms
19,040 KB
testcase_24 AC 144 ms
19,008 KB
testcase_25 AC 136 ms
18,852 KB
testcase_26 AC 141 ms
19,132 KB
testcase_27 AC 140 ms
18,880 KB
testcase_28 AC 138 ms
18,720 KB
testcase_29 AC 145 ms
19,508 KB
testcase_30 AC 150 ms
19,252 KB
testcase_31 AC 143 ms
18,868 KB
testcase_32 AC 88 ms
15,264 KB
testcase_33 AC 84 ms
14,724 KB
testcase_34 AC 92 ms
15,300 KB
testcase_35 AC 76 ms
14,260 KB
testcase_36 AC 78 ms
14,256 KB
testcase_37 AC 87 ms
14,976 KB
testcase_38 AC 84 ms
14,576 KB
testcase_39 AC 86 ms
14,848 KB
testcase_40 AC 89 ms
14,848 KB
testcase_41 AC 103 ms
15,672 KB
testcase_42 AC 41 ms
11,264 KB
testcase_43 AC 44 ms
11,520 KB
testcase_44 AC 46 ms
11,392 KB
testcase_45 AC 50 ms
11,520 KB
testcase_46 AC 46 ms
11,136 KB
testcase_47 AC 48 ms
11,648 KB
testcase_48 AC 47 ms
11,264 KB
testcase_49 AC 40 ms
10,880 KB
testcase_50 AC 45 ms
11,392 KB
testcase_51 AC 53 ms
11,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def RunLengthEncoding(S):
    res = []
    N = len(S)
    i = 0
    while i < N:
        cnt = 1
        while i < N - 1 and S[i] == S[i + 1]:
            cnt += 1
            i += 1
        res.append((S[i], cnt))
        i += 1
    return res


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

ans = N*(N+1)//2
for k, v in RunLengthEncoding(A):
    if k == 1:
        ans -= v * (v + 1) // 2
print(ans)
0