結果

問題 No.1505 Zero-Product Ranges
ユーザー TomoyarnTomoyarn
提出日時 2022-01-02 18:31:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 85 ms / 2,000 ms
コード長 633 bytes
コンパイル時間 1,883 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 98,176 KB
最終ジャッジ日時 2024-10-11 22:20:28
合計ジャッジ時間 5,573 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,712 KB
testcase_01 AC 39 ms
51,584 KB
testcase_02 AC 40 ms
51,584 KB
testcase_03 AC 79 ms
96,384 KB
testcase_04 AC 78 ms
96,640 KB
testcase_05 AC 59 ms
74,496 KB
testcase_06 AC 59 ms
73,984 KB
testcase_07 AC 57 ms
70,912 KB
testcase_08 AC 57 ms
72,448 KB
testcase_09 AC 56 ms
71,552 KB
testcase_10 AC 58 ms
72,960 KB
testcase_11 AC 60 ms
75,136 KB
testcase_12 AC 54 ms
69,888 KB
testcase_13 AC 66 ms
83,456 KB
testcase_14 AC 64 ms
80,896 KB
testcase_15 AC 75 ms
95,488 KB
testcase_16 AC 82 ms
97,920 KB
testcase_17 AC 84 ms
98,176 KB
testcase_18 AC 82 ms
97,536 KB
testcase_19 AC 39 ms
51,968 KB
testcase_20 AC 39 ms
51,712 KB
testcase_21 AC 38 ms
51,840 KB
testcase_22 AC 82 ms
97,152 KB
testcase_23 AC 85 ms
98,176 KB
testcase_24 AC 84 ms
97,664 KB
testcase_25 AC 80 ms
94,336 KB
testcase_26 AC 81 ms
96,640 KB
testcase_27 AC 79 ms
94,336 KB
testcase_28 AC 79 ms
93,568 KB
testcase_29 AC 82 ms
96,896 KB
testcase_30 AC 82 ms
97,280 KB
testcase_31 AC 82 ms
96,640 KB
testcase_32 AC 64 ms
78,464 KB
testcase_33 AC 65 ms
79,104 KB
testcase_34 AC 65 ms
80,256 KB
testcase_35 AC 59 ms
74,240 KB
testcase_36 AC 61 ms
76,544 KB
testcase_37 AC 65 ms
79,104 KB
testcase_38 AC 63 ms
78,336 KB
testcase_39 AC 63 ms
78,080 KB
testcase_40 AC 64 ms
79,232 KB
testcase_41 AC 68 ms
80,384 KB
testcase_42 AC 48 ms
62,592 KB
testcase_43 AC 47 ms
63,360 KB
testcase_44 AC 46 ms
61,952 KB
testcase_45 AC 49 ms
64,000 KB
testcase_46 AC 48 ms
62,464 KB
testcase_47 AC 49 ms
63,488 KB
testcase_48 AC 48 ms
62,208 KB
testcase_49 AC 47 ms
61,184 KB
testcase_50 AC 48 ms
63,616 KB
testcase_51 AC 49 ms
64,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

all = N * (N + 1) // 2
N += 1


def search_one():
    a = 0
    b = len(A)
    while True:
        j = a + (b - a) // 2
        if '1' * j in A:
            a = j
        else:
            b = j
        if b - a < 3:
            break
    return b
onecnt = 0
now = 'zero'
for i in range(N):
    if A[i] == 1:
        if now == 'zero':
            cnt = 1
            now = 'one'
        else:
            cnt += 1
    else:
        if now == 'one':
            onecnt +=  (cnt * (cnt + 1) // 2)
            #print(i, cnt)
            now = 'zero'

print(all - onecnt)
0