結果

問題 No.1470 Mex Sum
ユーザー maguroflymagurofly
提出日時 2021-04-09 21:45:59
言語 Ruby
(3.3.0)
結果
AC  
実行時間 283 ms / 2,000 ms
コード長 896 bytes
コンパイル時間 58 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 37,632 KB
最終ジャッジ日時 2024-06-25 04:53:01
合計ジャッジ時間 14,312 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 83 ms
12,160 KB
testcase_01 AC 86 ms
12,416 KB
testcase_02 AC 101 ms
14,208 KB
testcase_03 AC 102 ms
14,080 KB
testcase_04 AC 103 ms
14,208 KB
testcase_05 AC 101 ms
14,080 KB
testcase_06 AC 103 ms
14,208 KB
testcase_07 AC 103 ms
14,080 KB
testcase_08 AC 103 ms
13,952 KB
testcase_09 AC 103 ms
14,208 KB
testcase_10 AC 103 ms
14,080 KB
testcase_11 AC 103 ms
14,208 KB
testcase_12 AC 278 ms
37,248 KB
testcase_13 AC 274 ms
36,736 KB
testcase_14 AC 268 ms
34,816 KB
testcase_15 AC 274 ms
37,248 KB
testcase_16 AC 269 ms
36,736 KB
testcase_17 AC 267 ms
34,944 KB
testcase_18 AC 267 ms
35,200 KB
testcase_19 AC 270 ms
34,816 KB
testcase_20 AC 263 ms
36,608 KB
testcase_21 AC 271 ms
35,200 KB
testcase_22 AC 275 ms
37,376 KB
testcase_23 AC 273 ms
37,632 KB
testcase_24 AC 280 ms
37,632 KB
testcase_25 AC 276 ms
37,504 KB
testcase_26 AC 283 ms
37,376 KB
testcase_27 AC 278 ms
37,376 KB
testcase_28 AC 276 ms
37,504 KB
testcase_29 AC 278 ms
37,504 KB
testcase_30 AC 273 ms
37,376 KB
testcase_31 AC 276 ms
37,504 KB
testcase_32 AC 281 ms
37,376 KB
testcase_33 AC 271 ms
37,504 KB
testcase_34 AC 275 ms
37,632 KB
testcase_35 AC 272 ms
37,504 KB
testcase_36 AC 279 ms
37,504 KB
testcase_37 AC 268 ms
37,248 KB
testcase_38 AC 272 ms
37,248 KB
testcase_39 AC 272 ms
37,248 KB
testcase_40 AC 274 ms
37,120 KB
testcase_41 AC 273 ms
37,120 KB
testcase_42 AC 264 ms
37,120 KB
testcase_43 AC 267 ms
37,120 KB
testcase_44 AC 269 ms
37,120 KB
testcase_45 AC 270 ms
37,120 KB
testcase_46 AC 268 ms
37,248 KB
testcase_47 AC 272 ms
37,248 KB
testcase_48 AC 270 ms
36,992 KB
testcase_49 AC 268 ms
37,376 KB
testcase_50 AC 273 ms
37,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

class Range
    def upper_bound
        ac, wa = self.begin, self.end
        wa += 1 unless self.exclude_end?
        while ac + 1 < wa
            wj = (ac + wa) / 2
            if yield(wj)
                ac = wj
            else
                wa = wj
            end
        end
        ac
    end
end

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

counts = [[0, 0]]
A.each do |x|
    a, b = counts[-1]
    case x
    when 1
        counts << [a + 1, b]
    when 2
        counts << [a, b + 1]
    else
        counts << [a, b]
    end
end

ans = 0
(0 .. N - 2).each do |l|
    ones = counts[N][0] - counts[l][0]
    twos = counts[N][1] - counts[l][1]
    others = N - l - ones - twos - 1
    case A[l]
    when 1
        ans += (ones + others) * 2 + twos * 3
    when 2
        ans += (twos + others) * 1 + ones * 3
    else
        ans += (twos + others) * 1 + ones * 2
    end
end

puts ans
0