結果

問題 No.1505 Zero-Product Ranges
ユーザー AAAR SalmonAAAR Salmon
提出日時 2021-05-14 22:14:35
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 133 ms / 2,000 ms
コード長 369 bytes
コンパイル時間 144 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 14,080 KB
最終ジャッジ日時 2024-10-02 01:35:51
合計ジャッジ時間 6,052 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,624 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 31 ms
10,624 KB
testcase_03 AC 101 ms
13,800 KB
testcase_04 AC 130 ms
13,924 KB
testcase_05 AC 71 ms
12,172 KB
testcase_06 AC 68 ms
12,132 KB
testcase_07 AC 58 ms
11,760 KB
testcase_08 AC 62 ms
11,904 KB
testcase_09 AC 59 ms
11,776 KB
testcase_10 AC 59 ms
11,836 KB
testcase_11 AC 69 ms
12,160 KB
testcase_12 AC 54 ms
11,648 KB
testcase_13 AC 85 ms
12,828 KB
testcase_14 AC 78 ms
12,604 KB
testcase_15 AC 122 ms
13,916 KB
testcase_16 AC 128 ms
14,048 KB
testcase_17 AC 128 ms
13,796 KB
testcase_18 AC 118 ms
13,920 KB
testcase_19 AC 27 ms
10,624 KB
testcase_20 AC 26 ms
10,752 KB
testcase_21 AC 25 ms
10,752 KB
testcase_22 AC 113 ms
13,892 KB
testcase_23 AC 110 ms
14,080 KB
testcase_24 AC 107 ms
13,940 KB
testcase_25 AC 107 ms
13,860 KB
testcase_26 AC 109 ms
13,940 KB
testcase_27 AC 106 ms
13,864 KB
testcase_28 AC 108 ms
13,884 KB
testcase_29 AC 117 ms
13,960 KB
testcase_30 AC 133 ms
14,036 KB
testcase_31 AC 129 ms
13,900 KB
testcase_32 AC 86 ms
12,668 KB
testcase_33 AC 80 ms
12,276 KB
testcase_34 AC 90 ms
12,508 KB
testcase_35 AC 75 ms
12,040 KB
testcase_36 AC 76 ms
12,184 KB
testcase_37 AC 85 ms
12,532 KB
testcase_38 AC 82 ms
12,224 KB
testcase_39 AC 82 ms
12,276 KB
testcase_40 AC 83 ms
12,532 KB
testcase_41 AC 91 ms
12,684 KB
testcase_42 AC 39 ms
10,880 KB
testcase_43 AC 43 ms
11,136 KB
testcase_44 AC 40 ms
10,880 KB
testcase_45 AC 41 ms
11,008 KB
testcase_46 AC 38 ms
10,752 KB
testcase_47 AC 43 ms
11,136 KB
testcase_48 AC 39 ms
11,008 KB
testcase_49 AC 34 ms
10,880 KB
testcase_50 AC 40 ms
11,008 KB
testcase_51 AC 40 ms
11,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import math
from math import sin, cos, tan
from functools import reduce
from collections import deque
import heapq
sys.setrecursionlimit(1000000)
intm1 = lambda x:int(x)-1

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

ans = 0
pre0 = -1
for i in range(N):
	if A[i] == 0:
		ans += i + 1
		pre0 = i
	else:
		if pre0 != -1:
			ans += pre0 + 1
print(ans)
0