結果

問題 No.1505 Zero-Product Ranges
ユーザー maguroflymagurofly
提出日時 2022-01-27 13:13:34
言語 Ruby
(3.3.0)
結果
AC  
実行時間 436 ms / 2,000 ms
コード長 375 bytes
コンパイル時間 91 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 28,800 KB
最終ジャッジ日時 2024-06-07 04:09:37
合計ジャッジ時間 15,675 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 94 ms
12,288 KB
testcase_01 AC 91 ms
12,160 KB
testcase_02 AC 92 ms
12,288 KB
testcase_03 AC 436 ms
28,800 KB
testcase_04 AC 426 ms
28,544 KB
testcase_05 AC 225 ms
18,304 KB
testcase_06 AC 218 ms
17,792 KB
testcase_07 AC 187 ms
16,000 KB
testcase_08 AC 202 ms
17,280 KB
testcase_09 AC 197 ms
16,512 KB
testcase_10 AC 194 ms
17,152 KB
testcase_11 AC 216 ms
17,920 KB
testcase_12 AC 170 ms
15,872 KB
testcase_13 AC 278 ms
20,480 KB
testcase_14 AC 256 ms
19,584 KB
testcase_15 AC 397 ms
25,088 KB
testcase_16 AC 420 ms
28,672 KB
testcase_17 AC 425 ms
28,544 KB
testcase_18 AC 423 ms
28,800 KB
testcase_19 AC 89 ms
12,288 KB
testcase_20 AC 88 ms
12,288 KB
testcase_21 AC 88 ms
12,160 KB
testcase_22 AC 416 ms
28,416 KB
testcase_23 AC 411 ms
28,288 KB
testcase_24 AC 400 ms
24,960 KB
testcase_25 AC 383 ms
24,320 KB
testcase_26 AC 399 ms
24,832 KB
testcase_27 AC 397 ms
24,704 KB
testcase_28 AC 404 ms
24,832 KB
testcase_29 AC 411 ms
28,416 KB
testcase_30 AC 418 ms
28,672 KB
testcase_31 AC 398 ms
25,088 KB
testcase_32 AC 251 ms
19,456 KB
testcase_33 AC 243 ms
18,944 KB
testcase_34 AC 266 ms
19,840 KB
testcase_35 AC 217 ms
18,176 KB
testcase_36 AC 226 ms
18,304 KB
testcase_37 AC 251 ms
19,200 KB
testcase_38 AC 238 ms
18,688 KB
testcase_39 AC 245 ms
18,944 KB
testcase_40 AC 255 ms
19,200 KB
testcase_41 AC 278 ms
20,224 KB
testcase_42 AC 108 ms
12,416 KB
testcase_43 AC 119 ms
13,184 KB
testcase_44 AC 116 ms
12,928 KB
testcase_45 AC 118 ms
13,056 KB
testcase_46 AC 109 ms
12,544 KB
testcase_47 AC 123 ms
13,184 KB
testcase_48 AC 111 ms
12,544 KB
testcase_49 AC 99 ms
12,160 KB
testcase_50 AC 111 ms
12,928 KB
testcase_51 AC 116 ms
12,928 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N = gets.to_i
A = gets.split.map(&:to_i)

zero_count = [0]
A.each do |x|
    zero_count << zero_count[-1] + (x == 0 ? 1 : 0)
end

ans = 0
N.times do |l|
    ac = l
    wa = N + 1
    while wa - ac > 1
        wj = (ac + wa) / 2
        if zero_count[wj] <= zero_count[l]
            ac = wj
        else
            wa = wj
        end
    end
    ans += N - ac
end

puts ans
0