結果

問題 No.1505 Zero-Product Ranges
ユーザー brthyyjpbrthyyjp
提出日時 2021-05-15 18:42:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 77 ms / 2,000 ms
コード長 322 bytes
コンパイル時間 137 ms
コンパイル使用メモリ 82,400 KB
実行使用メモリ 103,092 KB
最終ジャッジ日時 2024-10-03 05:58:04
合計ジャッジ時間 4,436 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
53,072 KB
testcase_01 AC 33 ms
52,528 KB
testcase_02 AC 32 ms
52,952 KB
testcase_03 AC 67 ms
96,544 KB
testcase_04 AC 66 ms
96,972 KB
testcase_05 AC 50 ms
75,256 KB
testcase_06 AC 49 ms
74,808 KB
testcase_07 AC 48 ms
72,696 KB
testcase_08 AC 50 ms
73,692 KB
testcase_09 AC 47 ms
71,388 KB
testcase_10 AC 47 ms
72,792 KB
testcase_11 AC 49 ms
75,096 KB
testcase_12 AC 46 ms
70,340 KB
testcase_13 AC 56 ms
83,124 KB
testcase_14 AC 56 ms
81,636 KB
testcase_15 AC 66 ms
96,328 KB
testcase_16 AC 74 ms
102,828 KB
testcase_17 AC 73 ms
102,584 KB
testcase_18 AC 72 ms
103,080 KB
testcase_19 AC 32 ms
52,192 KB
testcase_20 AC 32 ms
52,740 KB
testcase_21 AC 33 ms
53,612 KB
testcase_22 AC 73 ms
102,328 KB
testcase_23 AC 73 ms
102,128 KB
testcase_24 AC 72 ms
101,972 KB
testcase_25 AC 70 ms
99,244 KB
testcase_26 AC 73 ms
101,696 KB
testcase_27 AC 73 ms
99,012 KB
testcase_28 AC 73 ms
98,552 KB
testcase_29 AC 75 ms
103,092 KB
testcase_30 AC 77 ms
102,640 KB
testcase_31 AC 76 ms
101,892 KB
testcase_32 AC 58 ms
82,292 KB
testcase_33 AC 56 ms
82,088 KB
testcase_34 AC 59 ms
84,272 KB
testcase_35 AC 52 ms
78,092 KB
testcase_36 AC 55 ms
79,384 KB
testcase_37 AC 57 ms
81,644 KB
testcase_38 AC 58 ms
81,124 KB
testcase_39 AC 58 ms
81,528 KB
testcase_40 AC 59 ms
82,012 KB
testcase_41 AC 61 ms
85,312 KB
testcase_42 AC 42 ms
63,328 KB
testcase_43 AC 41 ms
64,880 KB
testcase_44 AC 43 ms
64,780 KB
testcase_45 AC 42 ms
63,936 KB
testcase_46 AC 42 ms
63,936 KB
testcase_47 AC 45 ms
64,944 KB
testcase_48 AC 41 ms
64,120 KB
testcase_49 AC 42 ms
62,056 KB
testcase_50 AC 42 ms
64,056 KB
testcase_51 AC 43 ms
64,180 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
A = list(map(int, input().split()))
ans = n*(n+1)//2
X = []
cur = A[0]
cnt = 0
for a in A:
    if a == cur:
        cnt += 1
    else:
        if cur == 1:
            X.append(cnt)
        cur = a
        cnt = 1
else:
    if cur == 1:
        X.append(cnt)

for x in X:
    ans -= x*(x+1)//2
print(ans)
0