結果

問題 No.1505 Zero-Product Ranges
ユーザー TomoyarnTomoyarn
提出日時 2022-01-02 18:10:32
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 607 bytes
コンパイル時間 348 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 75,648 KB
最終ジャッジ日時 2024-10-11 22:00:57
合計ジャッジ時間 13,603 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,456 KB
testcase_01 AC 39 ms
51,456 KB
testcase_02 AC 38 ms
51,584 KB
testcase_03 AC 60 ms
63,616 KB
testcase_04 AC 54 ms
60,928 KB
testcase_05 AC 1,971 ms
75,392 KB
testcase_06 TLE -
testcase_07 AC 1,168 ms
68,096 KB
testcase_08 AC 1,698 ms
71,424 KB
testcase_09 AC 1,485 ms
69,888 KB
testcase_10 AC 45 ms
54,784 KB
testcase_11 AC 46 ms
55,296 KB
testcase_12 AC 44 ms
54,272 KB
testcase_13 AC 49 ms
57,728 KB
testcase_14 AC 48 ms
56,576 KB
testcase_15 AC 53 ms
60,416 KB
testcase_16 AC 114 ms
67,200 KB
testcase_17 AC 124 ms
68,096 KB
testcase_18 AC 120 ms
68,096 KB
testcase_19 AC 39 ms
51,968 KB
testcase_20 AC 40 ms
51,456 KB
testcase_21 AC 39 ms
51,712 KB
testcase_22 AC 120 ms
67,456 KB
testcase_23 AC 118 ms
67,328 KB
testcase_24 AC 114 ms
67,072 KB
testcase_25 AC 108 ms
65,536 KB
testcase_26 AC 113 ms
66,560 KB
testcase_27 AC 107 ms
65,920 KB
testcase_28 AC 115 ms
66,816 KB
testcase_29 AC 114 ms
66,432 KB
testcase_30 AC 113 ms
66,560 KB
testcase_31 AC 115 ms
66,560 KB
testcase_32 AC 78 ms
59,392 KB
testcase_33 AC 76 ms
58,880 KB
testcase_34 AC 78 ms
59,904 KB
testcase_35 AC 71 ms
58,112 KB
testcase_36 AC 70 ms
58,112 KB
testcase_37 AC 77 ms
59,008 KB
testcase_38 AC 73 ms
58,496 KB
testcase_39 AC 79 ms
59,392 KB
testcase_40 AC 77 ms
59,008 KB
testcase_41 AC 84 ms
60,544 KB
testcase_42 AC 44 ms
52,480 KB
testcase_43 AC 45 ms
52,864 KB
testcase_44 AC 45 ms
52,864 KB
testcase_45 AC 45 ms
52,736 KB
testcase_46 AC 43 ms
52,224 KB
testcase_47 AC 46 ms
53,248 KB
testcase_48 AC 44 ms
52,224 KB
testcase_49 AC 40 ms
52,096 KB
testcase_50 AC 44 ms
52,352 KB
testcase_51 AC 44 ms
52,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = input().replace(' ', '')

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

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 < 5:
            break
    return b

i = N

onecnt = 0
while i > 0:
    i = search_one()
    found = False
    while found == False and i > 0:
        o = A.count('1' * i)
        if o > 0:
            onecnt += (i * (i + 1) // 2) * o
            A = A.replace('1' * i, '')
            found = True
        else:
            i -= 1
    
print(all - onecnt)
0