結果

問題 No.1505 Zero-Product Ranges
ユーザー mkawa2mkawa2
提出日時 2021-05-14 22:38:25
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 139 ms / 2,000 ms
コード長 872 bytes
コンパイル時間 291 ms
コンパイル使用メモリ 12,288 KB
実行使用メモリ 13,984 KB
最終ジャッジ日時 2024-10-02 02:36:59
合計ジャッジ時間 5,937 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,496 KB
testcase_01 AC 30 ms
10,496 KB
testcase_02 AC 31 ms
10,496 KB
testcase_03 AC 101 ms
13,832 KB
testcase_04 AC 139 ms
13,840 KB
testcase_05 AC 73 ms
11,948 KB
testcase_06 AC 63 ms
12,032 KB
testcase_07 AC 51 ms
11,392 KB
testcase_08 AC 54 ms
11,648 KB
testcase_09 AC 52 ms
11,600 KB
testcase_10 AC 56 ms
11,612 KB
testcase_11 AC 61 ms
11,776 KB
testcase_12 AC 49 ms
11,648 KB
testcase_13 AC 84 ms
12,664 KB
testcase_14 AC 73 ms
12,544 KB
testcase_15 AC 115 ms
13,744 KB
testcase_16 AC 119 ms
13,836 KB
testcase_17 AC 119 ms
13,708 KB
testcase_18 AC 118 ms
13,704 KB
testcase_19 AC 26 ms
10,496 KB
testcase_20 AC 25 ms
10,624 KB
testcase_21 AC 24 ms
10,496 KB
testcase_22 AC 116 ms
13,552 KB
testcase_23 AC 115 ms
13,908 KB
testcase_24 AC 111 ms
13,984 KB
testcase_25 AC 105 ms
13,660 KB
testcase_26 AC 112 ms
13,728 KB
testcase_27 AC 112 ms
13,692 KB
testcase_28 AC 109 ms
13,832 KB
testcase_29 AC 112 ms
13,908 KB
testcase_30 AC 118 ms
13,828 KB
testcase_31 AC 110 ms
13,856 KB
testcase_32 AC 72 ms
12,408 KB
testcase_33 AC 67 ms
12,188 KB
testcase_34 AC 74 ms
12,592 KB
testcase_35 AC 61 ms
11,956 KB
testcase_36 AC 65 ms
11,856 KB
testcase_37 AC 69 ms
12,396 KB
testcase_38 AC 66 ms
12,160 KB
testcase_39 AC 68 ms
12,188 KB
testcase_40 AC 69 ms
12,392 KB
testcase_41 AC 76 ms
12,628 KB
testcase_42 AC 30 ms
10,752 KB
testcase_43 AC 33 ms
11,008 KB
testcase_44 AC 31 ms
10,624 KB
testcase_45 AC 32 ms
10,880 KB
testcase_46 AC 30 ms
10,624 KB
testcase_47 AC 34 ms
11,008 KB
testcase_48 AC 31 ms
10,624 KB
testcase_49 AC 27 ms
10,624 KB
testcase_50 AC 32 ms
10,624 KB
testcase_51 AC 33 ms
11,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(10**6)
int1 = lambda x: int(x)-1
p2D = lambda x: print(*x, sep="\n")
def II(): return int(sys.stdin.buffer.readline())
def LI(): return list(map(int, sys.stdin.buffer.readline().split()))
def LI1(): return list(map(int1, sys.stdin.buffer.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def BI(): return sys.stdin.buffer.readline().rstrip()
def SI(): return sys.stdin.buffer.readline().rstrip().decode()
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
dij = [(0, 1), (1, 0), (1, 1), (1, -1)]
inf = 10**16
md = 998244353
# md = 10**9+7

n=II()
aa=LI()
last=-1
ans=0
for i,a in enumerate(aa):
    if a==0:last=i
    if last==-1:continue
    ans+=last+1
print(ans)
0