結果

問題 No.1505 Zero-Product Ranges
ユーザー aa
提出日時 2021-05-16 20:39:53
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 120 ms / 2,000 ms
コード長 525 bytes
コンパイル時間 103 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 15,084 KB
最終ジャッジ日時 2024-10-05 06:45:06
合計ジャッジ時間 6,348 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
11,648 KB
testcase_01 AC 31 ms
11,520 KB
testcase_02 AC 31 ms
11,520 KB
testcase_03 AC 94 ms
15,080 KB
testcase_04 AC 98 ms
15,084 KB
testcase_05 AC 58 ms
12,800 KB
testcase_06 AC 61 ms
12,800 KB
testcase_07 AC 52 ms
12,512 KB
testcase_08 AC 53 ms
12,672 KB
testcase_09 AC 52 ms
12,672 KB
testcase_10 AC 52 ms
12,672 KB
testcase_11 AC 56 ms
12,800 KB
testcase_12 AC 50 ms
12,484 KB
testcase_13 AC 70 ms
13,796 KB
testcase_14 AC 65 ms
13,476 KB
testcase_15 AC 93 ms
14,880 KB
testcase_16 AC 120 ms
15,084 KB
testcase_17 AC 119 ms
15,084 KB
testcase_18 AC 116 ms
15,084 KB
testcase_19 AC 32 ms
11,648 KB
testcase_20 AC 32 ms
11,648 KB
testcase_21 AC 32 ms
11,648 KB
testcase_22 AC 118 ms
15,064 KB
testcase_23 AC 117 ms
14,784 KB
testcase_24 AC 113 ms
14,864 KB
testcase_25 AC 108 ms
14,668 KB
testcase_26 AC 112 ms
14,868 KB
testcase_27 AC 111 ms
14,824 KB
testcase_28 AC 110 ms
14,708 KB
testcase_29 AC 117 ms
14,912 KB
testcase_30 AC 119 ms
15,076 KB
testcase_31 AC 114 ms
14,996 KB
testcase_32 AC 77 ms
13,340 KB
testcase_33 AC 72 ms
13,148 KB
testcase_34 AC 80 ms
13,556 KB
testcase_35 AC 67 ms
12,928 KB
testcase_36 AC 69 ms
12,928 KB
testcase_37 AC 75 ms
13,336 KB
testcase_38 AC 74 ms
12,996 KB
testcase_39 AC 74 ms
13,148 KB
testcase_40 AC 75 ms
13,336 KB
testcase_41 AC 81 ms
13,592 KB
testcase_42 AC 36 ms
11,776 KB
testcase_43 AC 40 ms
11,776 KB
testcase_44 AC 38 ms
11,904 KB
testcase_45 AC 41 ms
11,904 KB
testcase_46 AC 37 ms
11,648 KB
testcase_47 AC 40 ms
11,776 KB
testcase_48 AC 37 ms
11,776 KB
testcase_49 AC 34 ms
11,520 KB
testcase_50 AC 37 ms
11,776 KB
testcase_51 AC 38 ms
12,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect
import copy
import decimal
import fractions
import heapq
import itertools
import math
import sys
from collections import deque,defaultdict,Counter
from functools import lru_cache,reduce
from math import gcd as Gcd
read=sys.stdin.read
readline=sys.stdin.readline
readlines=sys.stdin.readlines

N,*A=map(int,read().split())
ans=N*(N+1)//2
cur=0
while cur!=N:
    if A[cur]==0:
        cur+=1
        continue
    i=cur+1
    while i!=N and A[i]==1:
        i+=1
    ans-=(i-cur)*(i-cur+1)//2
    cur=i
print(ans)
0