結果

問題 No.1093 区間の和 / Sum of Range
ユーザー yuruhiyayuruhiya
提出日時 2020-06-26 13:12:09
言語 Crystal
(1.11.2)
結果
AC  
実行時間 158 ms / 2,000 ms
コード長 950 bytes
コンパイル時間 12,010 ms
コンパイル使用メモリ 297,824 KB
実行使用メモリ 13,184 KB
最終ジャッジ日時 2024-06-30 20:22:13
合計ジャッジ時間 16,366 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 80 ms
6,812 KB
testcase_02 AC 38 ms
6,944 KB
testcase_03 AC 22 ms
8,576 KB
testcase_04 AC 18 ms
8,704 KB
testcase_05 AC 117 ms
6,944 KB
testcase_06 AC 25 ms
6,940 KB
testcase_07 AC 65 ms
6,944 KB
testcase_08 AC 54 ms
9,728 KB
testcase_09 AC 104 ms
6,944 KB
testcase_10 AC 58 ms
7,680 KB
testcase_11 AC 109 ms
6,944 KB
testcase_12 AC 67 ms
8,192 KB
testcase_13 AC 2 ms
6,944 KB
testcase_14 AC 118 ms
6,944 KB
testcase_15 AC 29 ms
6,944 KB
testcase_16 AC 136 ms
7,040 KB
testcase_17 AC 118 ms
6,940 KB
testcase_18 AC 76 ms
6,944 KB
testcase_19 AC 8 ms
6,944 KB
testcase_20 AC 63 ms
6,944 KB
testcase_21 AC 141 ms
6,944 KB
testcase_22 AC 131 ms
7,040 KB
testcase_23 AC 98 ms
6,944 KB
testcase_24 AC 23 ms
8,320 KB
testcase_25 AC 117 ms
6,944 KB
testcase_26 AC 88 ms
8,192 KB
testcase_27 AC 125 ms
6,940 KB
testcase_28 AC 79 ms
7,680 KB
testcase_29 AC 158 ms
13,184 KB
testcase_30 AC 21 ms
6,944 KB
testcase_31 AC 28 ms
6,944 KB
testcase_32 AC 43 ms
6,940 KB
testcase_33 AC 131 ms
7,680 KB
testcase_34 AC 10 ms
6,940 KB
testcase_35 AC 137 ms
6,940 KB
testcase_36 AC 113 ms
9,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class CulSum(T)
  def initialize(a : Array(T))
    @n = a.size
    @s = Array(T).new(@n + 1, 0)
    @n.times do |i|
      @s[i + 1] = @s[i] + a[i]
    end
  end

  def initialize(@n : Int32, &f : Int32 -> T)
    @s = Array(T).new(@n + 1, 0)
    @n.times do |i|
      @s[i + 1] = @s[i] + yield(i)
    end
  end

  def initialize(a, &f)
    @n = a.size
    @s = Array.new(@n + 1, 0)
    @n.times do |i|
      @s[i + 1] = @s[i] + yield(a[i])
    end
  end

  def [](l : Int32, r : Int32)
    l < r ? @s[r] - @s[l] : 0
  end

  def [](i : Int32)
    @s[i]
  end

  def [](r : Range(Int32, Int32))
    @s[r.exclusive? ? r.end : r.end + 1] - @s[r.begin]
  end

  def to_a
    @n.times.to_a.map { |i| self[i..i] }
  end
end

n, k = read_line.split.map &.to_i
a = read_line.split.map &.to_i
cul = CulSum.new(a)
s = (0..n - k).map { |i| cul[i, i + k] }.sort + [10**9 + 7]

read_line.to_i.times do
  x = read_line.to_i
  puts s.bsearch_index { |i| i > x }
end
0