結果

問題 No.1093 区間の和 / Sum of Range
ユーザー simansiman
提出日時 2022-01-19 05:25:40
言語 Ruby
(3.3.0)
結果
AC  
実行時間 378 ms / 2,000 ms
コード長 283 bytes
コンパイル時間 410 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 23,040 KB
最終ジャッジ日時 2024-05-02 19:40:13
合計ジャッジ時間 10,175 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 77 ms
12,160 KB
testcase_01 AC 215 ms
15,360 KB
testcase_02 AC 128 ms
12,416 KB
testcase_03 AC 126 ms
19,072 KB
testcase_04 AC 114 ms
18,560 KB
testcase_05 AC 272 ms
15,104 KB
testcase_06 AC 118 ms
14,976 KB
testcase_07 AC 216 ms
15,232 KB
testcase_08 AC 184 ms
22,016 KB
testcase_09 AC 233 ms
13,952 KB
testcase_10 AC 183 ms
18,304 KB
testcase_11 AC 256 ms
15,488 KB
testcase_12 AC 201 ms
19,072 KB
testcase_13 AC 80 ms
12,160 KB
testcase_14 AC 287 ms
14,848 KB
testcase_15 AC 132 ms
15,232 KB
testcase_16 AC 328 ms
18,176 KB
testcase_17 AC 254 ms
13,184 KB
testcase_18 AC 207 ms
14,848 KB
testcase_19 AC 89 ms
13,312 KB
testcase_20 AC 173 ms
13,312 KB
testcase_21 AC 294 ms
14,848 KB
testcase_22 AC 302 ms
18,176 KB
testcase_23 AC 227 ms
13,312 KB
testcase_24 AC 124 ms
18,176 KB
testcase_25 AC 239 ms
15,104 KB
testcase_26 AC 227 ms
19,200 KB
testcase_27 AC 286 ms
14,848 KB
testcase_28 AC 224 ms
18,432 KB
testcase_29 AC 378 ms
23,040 KB
testcase_30 AC 112 ms
13,312 KB
testcase_31 AC 135 ms
15,360 KB
testcase_32 AC 155 ms
15,360 KB
testcase_33 AC 302 ms
18,176 KB
testcase_34 AC 92 ms
12,416 KB
testcase_35 AC 280 ms
12,416 KB
testcase_36 AC 280 ms
21,632 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

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

S = []
sum = A.take(K - 1).sum

(K - 1).upto(N - 1) do |i|
  sum += A[i]
  S << sum
  sum -= A[i - K + 1]
end

S.sort!
Q = gets.to_i

Q.times do
  x = gets.to_i
  idx = S.bsearch_index { |s| s > x } || S.size

  puts idx
end
0