結果

問題 No.1505 Zero-Product Ranges
ユーザー kept1994kept1994
提出日時 2022-04-24 18:16:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 97 ms / 2,000 ms
コード長 453 bytes
コンパイル時間 393 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 111,232 KB
最終ジャッジ日時 2024-06-26 05:10:10
合計ジャッジ時間 6,924 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,584 KB
testcase_01 AC 41 ms
51,840 KB
testcase_02 AC 41 ms
51,968 KB
testcase_03 AC 82 ms
96,384 KB
testcase_04 AC 97 ms
111,232 KB
testcase_05 AC 61 ms
73,344 KB
testcase_06 AC 60 ms
72,832 KB
testcase_07 AC 59 ms
70,272 KB
testcase_08 AC 60 ms
71,424 KB
testcase_09 AC 60 ms
70,400 KB
testcase_10 AC 65 ms
76,800 KB
testcase_11 AC 67 ms
79,744 KB
testcase_12 AC 62 ms
73,344 KB
testcase_13 AC 76 ms
91,520 KB
testcase_14 AC 72 ms
87,040 KB
testcase_15 AC 95 ms
111,232 KB
testcase_16 AC 95 ms
107,648 KB
testcase_17 AC 97 ms
108,032 KB
testcase_18 AC 97 ms
106,496 KB
testcase_19 AC 41 ms
51,584 KB
testcase_20 AC 41 ms
51,968 KB
testcase_21 AC 41 ms
51,840 KB
testcase_22 AC 95 ms
107,136 KB
testcase_23 AC 94 ms
105,472 KB
testcase_24 AC 95 ms
106,880 KB
testcase_25 AC 91 ms
102,144 KB
testcase_26 AC 94 ms
106,880 KB
testcase_27 AC 91 ms
101,760 KB
testcase_28 AC 92 ms
102,144 KB
testcase_29 AC 96 ms
107,392 KB
testcase_30 AC 95 ms
105,856 KB
testcase_31 AC 94 ms
105,472 KB
testcase_32 AC 72 ms
83,840 KB
testcase_33 AC 70 ms
82,688 KB
testcase_34 AC 73 ms
84,864 KB
testcase_35 AC 66 ms
77,440 KB
testcase_36 AC 70 ms
79,488 KB
testcase_37 AC 72 ms
83,072 KB
testcase_38 AC 70 ms
81,536 KB
testcase_39 AC 72 ms
82,688 KB
testcase_40 AC 73 ms
82,944 KB
testcase_41 AC 75 ms
86,272 KB
testcase_42 AC 51 ms
62,592 KB
testcase_43 AC 54 ms
63,360 KB
testcase_44 AC 53 ms
62,848 KB
testcase_45 AC 53 ms
63,232 KB
testcase_46 AC 51 ms
61,696 KB
testcase_47 AC 53 ms
64,128 KB
testcase_48 AC 52 ms
61,824 KB
testcase_49 AC 51 ms
60,672 KB
testcase_50 AC 52 ms
62,208 KB
testcase_51 AC 54 ms
62,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
import sys

def main():
    # N, K = map(int, input().split())
    N = int(input())
    A = list(map(int, input().split()))
    nums = []
    c = 0
    for aa in A:
        if aa == 0:
            nums.append(c)
            c = 0
        else:
            c += 1
    nums.append(c)
    ans = (1 + N) * N // 2
    for i in nums:
        ans -= (1 + i) * i // 2
    print(ans)
    return
    


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