結果

問題 No.1505 Zero-Product Ranges
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2022-10-02 20:51:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 105 ms / 2,000 ms
コード長 305 bytes
コンパイル時間 224 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 113,792 KB
最終ジャッジ日時 2024-06-07 14:05:14
合計ジャッジ時間 6,745 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
55,168 KB
testcase_01 AC 46 ms
55,040 KB
testcase_02 AC 46 ms
55,296 KB
testcase_03 AC 95 ms
113,792 KB
testcase_04 AC 94 ms
103,448 KB
testcase_05 AC 66 ms
81,280 KB
testcase_06 AC 65 ms
80,640 KB
testcase_07 AC 62 ms
76,672 KB
testcase_08 AC 64 ms
78,720 KB
testcase_09 AC 63 ms
77,184 KB
testcase_10 AC 63 ms
75,264 KB
testcase_11 AC 65 ms
77,568 KB
testcase_12 AC 60 ms
71,936 KB
testcase_13 AC 75 ms
86,656 KB
testcase_14 AC 70 ms
83,712 KB
testcase_15 AC 87 ms
100,736 KB
testcase_16 AC 105 ms
103,808 KB
testcase_17 AC 105 ms
103,936 KB
testcase_18 AC 103 ms
104,152 KB
testcase_19 AC 46 ms
55,552 KB
testcase_20 AC 45 ms
55,232 KB
testcase_21 AC 47 ms
55,680 KB
testcase_22 AC 104 ms
103,844 KB
testcase_23 AC 103 ms
104,064 KB
testcase_24 AC 102 ms
103,956 KB
testcase_25 AC 100 ms
100,656 KB
testcase_26 AC 103 ms
103,648 KB
testcase_27 AC 105 ms
100,480 KB
testcase_28 AC 100 ms
100,984 KB
testcase_29 AC 104 ms
104,192 KB
testcase_30 AC 103 ms
104,192 KB
testcase_31 AC 101 ms
103,808 KB
testcase_32 AC 81 ms
88,576 KB
testcase_33 AC 83 ms
88,320 KB
testcase_34 AC 83 ms
90,240 KB
testcase_35 AC 78 ms
85,888 KB
testcase_36 AC 80 ms
86,656 KB
testcase_37 AC 83 ms
89,088 KB
testcase_38 AC 81 ms
88,356 KB
testcase_39 AC 84 ms
88,576 KB
testcase_40 AC 80 ms
89,088 KB
testcase_41 AC 85 ms
90,368 KB
testcase_42 AC 59 ms
67,840 KB
testcase_43 AC 60 ms
69,760 KB
testcase_44 AC 58 ms
68,608 KB
testcase_45 AC 62 ms
68,736 KB
testcase_46 AC 60 ms
66,304 KB
testcase_47 AC 60 ms
69,120 KB
testcase_48 AC 58 ms
66,816 KB
testcase_49 AC 56 ms
64,896 KB
testcase_50 AC 58 ms
68,096 KB
testcase_51 AC 58 ms
69,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *
from itertools import *
from functools import *
from heapq import *
import sys,math
input = sys.stdin.readline

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

ans = N*(N+1)//2
for g,r in groupby(A):
    if g==1:
        n = len(list(r))
        ans -= n*(n+1)//2
print(ans)
0