結果

問題 No.1505 Zero-Product Ranges
ユーザー H20H20
提出日時 2021-05-15 00:25:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 127 ms / 2,000 ms
コード長 257 bytes
コンパイル時間 464 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 126,208 KB
最終ジャッジ日時 2024-10-02 07:17:04
合計ジャッジ時間 6,493 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,224 KB
testcase_01 AC 48 ms
52,352 KB
testcase_02 AC 41 ms
51,840 KB
testcase_03 AC 109 ms
125,952 KB
testcase_04 AC 112 ms
126,208 KB
testcase_05 AC 70 ms
85,248 KB
testcase_06 AC 69 ms
85,248 KB
testcase_07 AC 61 ms
78,976 KB
testcase_08 AC 73 ms
82,304 KB
testcase_09 AC 69 ms
79,872 KB
testcase_10 AC 66 ms
81,280 KB
testcase_11 AC 70 ms
84,864 KB
testcase_12 AC 61 ms
77,312 KB
testcase_13 AC 95 ms
100,308 KB
testcase_14 AC 78 ms
95,104 KB
testcase_15 AC 102 ms
125,568 KB
testcase_16 AC 118 ms
117,248 KB
testcase_17 AC 125 ms
117,504 KB
testcase_18 AC 126 ms
117,248 KB
testcase_19 AC 41 ms
51,840 KB
testcase_20 AC 39 ms
52,224 KB
testcase_21 AC 41 ms
51,840 KB
testcase_22 AC 115 ms
117,376 KB
testcase_23 AC 121 ms
117,760 KB
testcase_24 AC 117 ms
116,992 KB
testcase_25 AC 111 ms
112,256 KB
testcase_26 AC 117 ms
117,632 KB
testcase_27 AC 120 ms
112,640 KB
testcase_28 AC 118 ms
112,896 KB
testcase_29 AC 126 ms
117,332 KB
testcase_30 AC 127 ms
117,248 KB
testcase_31 AC 118 ms
117,504 KB
testcase_32 AC 88 ms
94,688 KB
testcase_33 AC 87 ms
94,208 KB
testcase_34 AC 100 ms
97,280 KB
testcase_35 AC 84 ms
89,856 KB
testcase_36 AC 84 ms
92,160 KB
testcase_37 AC 92 ms
94,336 KB
testcase_38 AC 93 ms
94,464 KB
testcase_39 AC 88 ms
94,208 KB
testcase_40 AC 95 ms
94,848 KB
testcase_41 AC 100 ms
97,792 KB
testcase_42 AC 58 ms
67,328 KB
testcase_43 AC 57 ms
70,912 KB
testcase_44 AC 63 ms
70,400 KB
testcase_45 AC 59 ms
68,736 KB
testcase_46 AC 56 ms
66,176 KB
testcase_47 AC 58 ms
70,912 KB
testcase_48 AC 55 ms
66,560 KB
testcase_49 AC 52 ms
63,744 KB
testcase_50 AC 54 ms
68,096 KB
testcase_51 AC 62 ms
69,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools
N = int(input())
A = list(map(int, input().split()))
TF = []
for i in range(N):
    TF.append(A[i]!=0)
gr = itertools.groupby(TF)
ans = N+N*(N-1)//2
for key, group in gr:
    le = len(list(group))
    ans -= key*(le+le*(le-1)//2)
print(ans)
0