結果

問題 No.1505 Zero-Product Ranges
ユーザー nrktnrkt
提出日時 2021-05-17 17:35:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 90 ms / 2,000 ms
コード長 718 bytes
コンパイル時間 468 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 99,840 KB
最終ジャッジ日時 2024-10-06 19:47:20
合計ジャッジ時間 5,247 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
54,400 KB
testcase_01 AC 45 ms
54,528 KB
testcase_02 AC 46 ms
54,656 KB
testcase_03 AC 90 ms
98,944 KB
testcase_04 AC 83 ms
98,668 KB
testcase_05 AC 66 ms
76,288 KB
testcase_06 AC 64 ms
76,160 KB
testcase_07 AC 60 ms
73,088 KB
testcase_08 AC 61 ms
73,856 KB
testcase_09 AC 63 ms
73,348 KB
testcase_10 AC 61 ms
74,112 KB
testcase_11 AC 63 ms
75,904 KB
testcase_12 AC 59 ms
71,296 KB
testcase_13 AC 70 ms
84,224 KB
testcase_14 AC 68 ms
81,792 KB
testcase_15 AC 81 ms
98,432 KB
testcase_16 AC 84 ms
99,840 KB
testcase_17 AC 85 ms
99,308 KB
testcase_18 AC 85 ms
98,816 KB
testcase_19 AC 45 ms
53,888 KB
testcase_20 AC 46 ms
54,400 KB
testcase_21 AC 46 ms
54,656 KB
testcase_22 AC 86 ms
98,688 KB
testcase_23 AC 84 ms
98,944 KB
testcase_24 AC 83 ms
99,092 KB
testcase_25 AC 79 ms
95,360 KB
testcase_26 AC 83 ms
98,432 KB
testcase_27 AC 81 ms
95,104 KB
testcase_28 AC 82 ms
95,488 KB
testcase_29 AC 83 ms
99,456 KB
testcase_30 AC 86 ms
99,456 KB
testcase_31 AC 85 ms
98,944 KB
testcase_32 AC 69 ms
80,256 KB
testcase_33 AC 67 ms
80,384 KB
testcase_34 AC 69 ms
82,304 KB
testcase_35 AC 64 ms
76,032 KB
testcase_36 AC 64 ms
77,568 KB
testcase_37 AC 67 ms
80,128 KB
testcase_38 AC 68 ms
80,256 KB
testcase_39 AC 67 ms
80,180 KB
testcase_40 AC 67 ms
80,320 KB
testcase_41 AC 70 ms
82,432 KB
testcase_42 AC 53 ms
64,384 KB
testcase_43 AC 55 ms
65,152 KB
testcase_44 AC 53 ms
64,256 KB
testcase_45 AC 54 ms
64,512 KB
testcase_46 AC 54 ms
63,232 KB
testcase_47 AC 55 ms
65,280 KB
testcase_48 AC 56 ms
63,488 KB
testcase_49 AC 53 ms
62,464 KB
testcase_50 AC 54 ms
64,640 KB
testcase_51 AC 55 ms
64,512 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
 
import sys
import math
from bisect import bisect_right as br
from bisect import bisect_left as bl
sys.setrecursionlimit(2147483647)
from heapq import heappush, heappop,heappushpop
from collections import defaultdict
from itertools import accumulate, chain
from collections import Counter
from collections import deque
from operator import itemgetter
from itertools import permutations
mod = 10**9 + 7
inf = float('inf')
def I(): return int(sys.stdin.readline())
def LI(): return list(map(int,sys.stdin.readline().split()))

n = I()
a = LI()
ans = 0
cnt = 0
for i in range(n):
    if a[i] == 0:
        cnt += 1
        ans += cnt * (n - i)
        cnt = 0
    else:
        cnt += 1
print(ans)
0