結果

問題 No.1505 Zero-Product Ranges
ユーザー GER_chenGER_chen
提出日時 2021-05-14 22:08:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 78 ms / 2,000 ms
コード長 174 bytes
コンパイル時間 219 ms
コンパイル使用メモリ 82,516 KB
実行使用メモリ 98,044 KB
最終ジャッジ日時 2024-10-02 01:22:29
合計ジャッジ時間 4,628 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,620 KB
testcase_01 AC 37 ms
53,984 KB
testcase_02 AC 37 ms
53,568 KB
testcase_03 AC 72 ms
97,568 KB
testcase_04 AC 73 ms
97,844 KB
testcase_05 AC 54 ms
74,572 KB
testcase_06 AC 53 ms
74,100 KB
testcase_07 AC 52 ms
70,388 KB
testcase_08 AC 55 ms
72,792 KB
testcase_09 AC 52 ms
71,428 KB
testcase_10 AC 54 ms
72,856 KB
testcase_11 AC 54 ms
74,432 KB
testcase_12 AC 52 ms
71,484 KB
testcase_13 AC 61 ms
82,612 KB
testcase_14 AC 60 ms
81,116 KB
testcase_15 AC 72 ms
96,720 KB
testcase_16 AC 75 ms
98,044 KB
testcase_17 AC 76 ms
97,344 KB
testcase_18 AC 77 ms
97,788 KB
testcase_19 AC 41 ms
51,880 KB
testcase_20 AC 39 ms
52,368 KB
testcase_21 AC 39 ms
51,876 KB
testcase_22 AC 78 ms
97,176 KB
testcase_23 AC 78 ms
97,112 KB
testcase_24 AC 77 ms
97,624 KB
testcase_25 AC 72 ms
93,520 KB
testcase_26 AC 75 ms
97,340 KB
testcase_27 AC 74 ms
93,440 KB
testcase_28 AC 74 ms
94,136 KB
testcase_29 AC 74 ms
97,556 KB
testcase_30 AC 75 ms
97,876 KB
testcase_31 AC 76 ms
97,140 KB
testcase_32 AC 58 ms
79,148 KB
testcase_33 AC 61 ms
77,824 KB
testcase_34 AC 60 ms
80,464 KB
testcase_35 AC 57 ms
74,900 KB
testcase_36 AC 55 ms
77,156 KB
testcase_37 AC 60 ms
79,884 KB
testcase_38 AC 58 ms
77,736 KB
testcase_39 AC 60 ms
79,888 KB
testcase_40 AC 60 ms
79,120 KB
testcase_41 AC 60 ms
81,360 KB
testcase_42 AC 45 ms
61,840 KB
testcase_43 AC 45 ms
64,724 KB
testcase_44 AC 44 ms
62,896 KB
testcase_45 AC 43 ms
63,536 KB
testcase_46 AC 41 ms
61,512 KB
testcase_47 AC 45 ms
64,532 KB
testcase_48 AC 44 ms
62,680 KB
testcase_49 AC 43 ms
60,228 KB
testcase_50 AC 44 ms
62,632 KB
testcase_51 AC 45 ms
63,532 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
A = list(map(int, input().split()))
ans = 0
before = -1
for i, a in enumerate(A):
    if not a:
        ans += (i-before)*(n-i)
        before = i
print(ans)
0