結果

問題 No.1505 Zero-Product Ranges
ユーザー あかりきあかりき
提出日時 2021-05-23 13:34:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 86 ms / 2,000 ms
コード長 230 bytes
コンパイル時間 379 ms
コンパイル使用メモリ 81,864 KB
実行使用メモリ 100,608 KB
最終ジャッジ日時 2024-10-11 12:44:50
合計ジャッジ時間 6,516 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,456 KB
testcase_01 AC 38 ms
52,224 KB
testcase_02 AC 37 ms
51,968 KB
testcase_03 AC 83 ms
98,816 KB
testcase_04 AC 77 ms
99,300 KB
testcase_05 AC 61 ms
76,288 KB
testcase_06 AC 61 ms
75,904 KB
testcase_07 AC 56 ms
72,576 KB
testcase_08 AC 61 ms
74,112 KB
testcase_09 AC 57 ms
72,704 KB
testcase_10 AC 58 ms
73,216 KB
testcase_11 AC 60 ms
75,776 KB
testcase_12 AC 56 ms
71,040 KB
testcase_13 AC 69 ms
84,480 KB
testcase_14 AC 65 ms
81,408 KB
testcase_15 AC 79 ms
98,688 KB
testcase_16 AC 85 ms
100,352 KB
testcase_17 AC 86 ms
100,352 KB
testcase_18 AC 83 ms
100,608 KB
testcase_19 AC 37 ms
51,712 KB
testcase_20 AC 37 ms
51,584 KB
testcase_21 AC 38 ms
52,224 KB
testcase_22 AC 83 ms
100,608 KB
testcase_23 AC 82 ms
100,096 KB
testcase_24 AC 82 ms
99,328 KB
testcase_25 AC 80 ms
96,128 KB
testcase_26 AC 82 ms
100,224 KB
testcase_27 AC 81 ms
96,128 KB
testcase_28 AC 80 ms
96,512 KB
testcase_29 AC 85 ms
100,480 KB
testcase_30 AC 85 ms
100,224 KB
testcase_31 AC 83 ms
99,712 KB
testcase_32 AC 66 ms
80,512 KB
testcase_33 AC 65 ms
80,384 KB
testcase_34 AC 67 ms
82,048 KB
testcase_35 AC 60 ms
76,544 KB
testcase_36 AC 62 ms
78,080 KB
testcase_37 AC 65 ms
80,896 KB
testcase_38 AC 64 ms
80,384 KB
testcase_39 AC 64 ms
80,384 KB
testcase_40 AC 65 ms
80,384 KB
testcase_41 AC 68 ms
83,200 KB
testcase_42 AC 48 ms
63,488 KB
testcase_43 AC 49 ms
64,512 KB
testcase_44 AC 49 ms
63,872 KB
testcase_45 AC 49 ms
63,744 KB
testcase_46 AC 47 ms
62,592 KB
testcase_47 AC 50 ms
64,512 KB
testcase_48 AC 48 ms
63,232 KB
testcase_49 AC 48 ms
61,696 KB
testcase_50 AC 49 ms
64,128 KB
testcase_51 AC 49 ms
63,872 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
a=list(map(int,input().split()))
L=[-1]*(n+1)
for i in range(n):
  if a[i]==0:
    L[i]=i
L[-1]=n+1
for i in range(n-1,-1,-1):
  if L[i]==-1:
    L[i]=L[i+1]

ans=0
for i in range(n):
  ans+=max(n-L[i],0)
print(ans)
0