結果

問題 No.1505 Zero-Product Ranges
ユーザー raven7959raven7959
提出日時 2021-08-10 11:11:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 76 ms / 2,000 ms
コード長 203 bytes
コンパイル時間 180 ms
コンパイル使用メモリ 82,064 KB
実行使用メモリ 98,844 KB
最終ジャッジ日時 2024-09-22 12:24:57
合計ジャッジ時間 4,659 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,416 KB
testcase_01 AC 36 ms
52,740 KB
testcase_02 AC 37 ms
52,572 KB
testcase_03 AC 71 ms
96,956 KB
testcase_04 AC 71 ms
97,072 KB
testcase_05 AC 53 ms
76,016 KB
testcase_06 AC 53 ms
74,672 KB
testcase_07 AC 50 ms
70,600 KB
testcase_08 AC 51 ms
72,844 KB
testcase_09 AC 50 ms
71,040 KB
testcase_10 AC 51 ms
72,784 KB
testcase_11 AC 54 ms
74,824 KB
testcase_12 AC 50 ms
71,652 KB
testcase_13 AC 60 ms
83,724 KB
testcase_14 AC 57 ms
80,592 KB
testcase_15 AC 71 ms
96,468 KB
testcase_16 AC 74 ms
98,308 KB
testcase_17 AC 74 ms
97,484 KB
testcase_18 AC 74 ms
97,160 KB
testcase_19 AC 37 ms
52,344 KB
testcase_20 AC 37 ms
52,944 KB
testcase_21 AC 37 ms
52,396 KB
testcase_22 AC 73 ms
97,192 KB
testcase_23 AC 73 ms
97,452 KB
testcase_24 AC 74 ms
97,200 KB
testcase_25 AC 71 ms
93,432 KB
testcase_26 AC 74 ms
97,428 KB
testcase_27 AC 71 ms
94,852 KB
testcase_28 AC 71 ms
94,664 KB
testcase_29 AC 75 ms
98,844 KB
testcase_30 AC 76 ms
98,840 KB
testcase_31 AC 74 ms
97,632 KB
testcase_32 AC 56 ms
78,500 KB
testcase_33 AC 57 ms
78,180 KB
testcase_34 AC 59 ms
80,816 KB
testcase_35 AC 55 ms
75,908 KB
testcase_36 AC 57 ms
77,024 KB
testcase_37 AC 59 ms
78,088 KB
testcase_38 AC 56 ms
79,016 KB
testcase_39 AC 58 ms
77,948 KB
testcase_40 AC 57 ms
79,636 KB
testcase_41 AC 59 ms
81,680 KB
testcase_42 AC 43 ms
62,424 KB
testcase_43 AC 44 ms
63,084 KB
testcase_44 AC 44 ms
63,252 KB
testcase_45 AC 43 ms
62,568 KB
testcase_46 AC 43 ms
62,632 KB
testcase_47 AC 45 ms
64,748 KB
testcase_48 AC 43 ms
61,992 KB
testcase_49 AC 43 ms
60,792 KB
testcase_50 AC 45 ms
62,432 KB
testcase_51 AC 45 ms
63,324 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=list(map(int,input().split()))
ans=0
cnt=0
for i in range(N):
    if A[i]==1:
        cnt+=1
    else:
        ans+=(cnt+1)*cnt//2
        cnt=0
ans+=(cnt+1)*cnt//2
print((N+1)*N//2-ans)
0