結果

問題 No.1505 Zero-Product Ranges
ユーザー ygd.ygd.
提出日時 2021-05-29 22:57:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 113 ms / 2,000 ms
コード長 456 bytes
コンパイル時間 738 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 117,632 KB
最終ジャッジ日時 2024-11-08 09:32:28
合計ジャッジ時間 7,541 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
73,728 KB
testcase_01 AC 62 ms
73,728 KB
testcase_02 AC 63 ms
73,600 KB
testcase_03 AC 103 ms
113,408 KB
testcase_04 AC 107 ms
113,024 KB
testcase_05 AC 81 ms
90,240 KB
testcase_06 AC 80 ms
89,984 KB
testcase_07 AC 77 ms
86,912 KB
testcase_08 AC 79 ms
88,192 KB
testcase_09 AC 79 ms
87,424 KB
testcase_10 AC 79 ms
88,576 KB
testcase_11 AC 80 ms
90,368 KB
testcase_12 AC 76 ms
85,760 KB
testcase_13 AC 91 ms
98,944 KB
testcase_14 AC 87 ms
96,512 KB
testcase_15 AC 101 ms
112,640 KB
testcase_16 AC 113 ms
117,632 KB
testcase_17 AC 112 ms
117,376 KB
testcase_18 AC 111 ms
117,248 KB
testcase_19 AC 61 ms
73,856 KB
testcase_20 AC 61 ms
73,856 KB
testcase_21 AC 63 ms
73,728 KB
testcase_22 AC 112 ms
117,376 KB
testcase_23 AC 113 ms
117,120 KB
testcase_24 AC 113 ms
117,376 KB
testcase_25 AC 109 ms
114,432 KB
testcase_26 AC 111 ms
117,504 KB
testcase_27 AC 108 ms
114,304 KB
testcase_28 AC 109 ms
114,432 KB
testcase_29 AC 111 ms
117,248 KB
testcase_30 AC 111 ms
117,376 KB
testcase_31 AC 110 ms
117,376 KB
testcase_32 AC 87 ms
96,768 KB
testcase_33 AC 87 ms
96,640 KB
testcase_34 AC 88 ms
98,304 KB
testcase_35 AC 83 ms
92,160 KB
testcase_36 AC 84 ms
93,440 KB
testcase_37 AC 87 ms
96,512 KB
testcase_38 AC 86 ms
95,488 KB
testcase_39 AC 88 ms
96,512 KB
testcase_40 AC 88 ms
96,896 KB
testcase_41 AC 90 ms
99,200 KB
testcase_42 AC 70 ms
78,336 KB
testcase_43 AC 71 ms
79,488 KB
testcase_44 AC 70 ms
78,848 KB
testcase_45 AC 69 ms
78,976 KB
testcase_46 AC 69 ms
77,824 KB
testcase_47 AC 77 ms
79,616 KB
testcase_48 AC 76 ms
78,208 KB
testcase_49 AC 68 ms
77,056 KB
testcase_50 AC 71 ms
78,208 KB
testcase_51 AC 70 ms
79,488 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys 
from collections import Counter
def main():
    N = int(input())
    A = list(map(int,input().split()))
    MAX = 2*pow(10,5) + 1000
    S = [0]
    for i in range(1,MAX):
        temp = S[-1] + i
        S.append(temp)
    ans = S[N]
    cnt = 0
    for i in range(N):
        if A[i] == 0:
            ans -= S[cnt]
            cnt = 0
        else:
            cnt += 1
    ans -= S[cnt]
    print(ans)

if __name__ == '__main__':
    main()
0