結果

問題 No.1505 Zero-Product Ranges
ユーザー rlangevinrlangevin
提出日時 2024-07-07 01:58:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 96 ms / 2,000 ms
コード長 288 bytes
コンパイル時間 221 ms
コンパイル使用メモリ 82,272 KB
実行使用メモリ 108,068 KB
最終ジャッジ日時 2024-07-07 01:58:26
合計ジャッジ時間 6,257 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,756 KB
testcase_01 AC 35 ms
55,176 KB
testcase_02 AC 35 ms
53,848 KB
testcase_03 AC 68 ms
99,976 KB
testcase_04 AC 85 ms
108,044 KB
testcase_05 AC 63 ms
82,248 KB
testcase_06 AC 55 ms
80,896 KB
testcase_07 AC 56 ms
77,488 KB
testcase_08 AC 54 ms
79,392 KB
testcase_09 AC 53 ms
77,188 KB
testcase_10 AC 60 ms
81,268 KB
testcase_11 AC 61 ms
84,092 KB
testcase_12 AC 54 ms
78,384 KB
testcase_13 AC 71 ms
94,552 KB
testcase_14 AC 69 ms
91,508 KB
testcase_15 AC 85 ms
108,068 KB
testcase_16 AC 90 ms
106,820 KB
testcase_17 AC 90 ms
107,048 KB
testcase_18 AC 88 ms
107,032 KB
testcase_19 AC 36 ms
54,916 KB
testcase_20 AC 36 ms
54,216 KB
testcase_21 AC 39 ms
54,476 KB
testcase_22 AC 90 ms
106,788 KB
testcase_23 AC 88 ms
106,484 KB
testcase_24 AC 88 ms
106,732 KB
testcase_25 AC 85 ms
103,060 KB
testcase_26 AC 89 ms
106,624 KB
testcase_27 AC 85 ms
103,272 KB
testcase_28 AC 88 ms
103,520 KB
testcase_29 AC 94 ms
106,624 KB
testcase_30 AC 96 ms
106,784 KB
testcase_31 AC 89 ms
106,676 KB
testcase_32 AC 71 ms
88,960 KB
testcase_33 AC 69 ms
89,200 KB
testcase_34 AC 76 ms
91,204 KB
testcase_35 AC 61 ms
84,096 KB
testcase_36 AC 62 ms
84,996 KB
testcase_37 AC 69 ms
89,284 KB
testcase_38 AC 67 ms
89,088 KB
testcase_39 AC 69 ms
88,828 KB
testcase_40 AC 68 ms
89,240 KB
testcase_41 AC 71 ms
91,308 KB
testcase_42 AC 46 ms
66,668 KB
testcase_43 AC 48 ms
68,536 KB
testcase_44 AC 45 ms
67,288 KB
testcase_45 AC 46 ms
68,140 KB
testcase_46 AC 45 ms
65,932 KB
testcase_47 AC 47 ms
68,192 KB
testcase_48 AC 46 ms
66,460 KB
testcase_49 AC 45 ms
64,476 KB
testcase_50 AC 46 ms
66,964 KB
testcase_51 AC 47 ms
68,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *

N = int(input())
A = list(map(int, input().split()))
Q = deque()
for i in range(N):
    if A[i] == 0:
        Q.append(i)
        
ans = 0
for i in range(N):
    if Q:
        ans += N - Q[0]
        if Q[0] == i:
            Q.popleft()
            
print(ans)
0