結果

問題 No.1505 Zero-Product Ranges
ユーザー convexineqconvexineq
提出日時 2021-05-14 22:23:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 94 ms / 2,000 ms
コード長 162 bytes
コンパイル時間 198 ms
コンパイル使用メモリ 82,228 KB
実行使用メモリ 107,392 KB
最終ジャッジ日時 2024-10-02 01:59:12
合計ジャッジ時間 5,241 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,096 KB
testcase_01 AC 39 ms
51,584 KB
testcase_02 AC 39 ms
51,712 KB
testcase_03 AC 84 ms
103,936 KB
testcase_04 AC 84 ms
103,168 KB
testcase_05 AC 65 ms
78,336 KB
testcase_06 AC 63 ms
77,440 KB
testcase_07 AC 60 ms
73,216 KB
testcase_08 AC 62 ms
75,392 KB
testcase_09 AC 59 ms
74,112 KB
testcase_10 AC 59 ms
74,112 KB
testcase_11 AC 64 ms
77,696 KB
testcase_12 AC 57 ms
71,296 KB
testcase_13 AC 71 ms
87,808 KB
testcase_14 AC 69 ms
84,736 KB
testcase_15 AC 83 ms
102,528 KB
testcase_16 AC 92 ms
106,624 KB
testcase_17 AC 91 ms
106,240 KB
testcase_18 AC 94 ms
107,392 KB
testcase_19 AC 38 ms
51,328 KB
testcase_20 AC 39 ms
51,712 KB
testcase_21 AC 39 ms
52,352 KB
testcase_22 AC 93 ms
106,368 KB
testcase_23 AC 93 ms
106,956 KB
testcase_24 AC 91 ms
104,960 KB
testcase_25 AC 88 ms
101,248 KB
testcase_26 AC 90 ms
104,576 KB
testcase_27 AC 86 ms
101,376 KB
testcase_28 AC 89 ms
102,528 KB
testcase_29 AC 93 ms
106,752 KB
testcase_30 AC 93 ms
106,624 KB
testcase_31 AC 92 ms
104,192 KB
testcase_32 AC 72 ms
83,456 KB
testcase_33 AC 72 ms
83,200 KB
testcase_34 AC 75 ms
86,272 KB
testcase_35 AC 66 ms
79,616 KB
testcase_36 AC 68 ms
81,424 KB
testcase_37 AC 72 ms
83,328 KB
testcase_38 AC 69 ms
81,920 KB
testcase_39 AC 69 ms
82,688 KB
testcase_40 AC 71 ms
83,072 KB
testcase_41 AC 72 ms
85,632 KB
testcase_42 AC 53 ms
64,640 KB
testcase_43 AC 52 ms
64,768 KB
testcase_44 AC 51 ms
64,000 KB
testcase_45 AC 51 ms
64,000 KB
testcase_46 AC 54 ms
64,640 KB
testcase_47 AC 52 ms
65,152 KB
testcase_48 AC 52 ms
64,000 KB
testcase_49 AC 51 ms
62,720 KB
testcase_50 AC 51 ms
63,360 KB
testcase_51 AC 52 ms
64,512 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,*a = map(int,open(0).read().split())
ans = cnt = r = 0
for l in range(n):
    if r < l: r = l
    while r < n and a[r]:
        r += 1
    ans += n-r
print(ans)
0