結果

問題 No.1093 区間の和 / Sum of Range
ユーザー 小野寺健小野寺健
提出日時 2021-11-05 08:52:55
言語 Ruby
(3.3.0)
結果
AC  
実行時間 330 ms / 2,000 ms
コード長 325 bytes
コンパイル時間 544 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 23,552 KB
最終ジャッジ日時 2024-10-15 17:12:19
合計ジャッジ時間 11,478 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 76 ms
11,776 KB
testcase_01 AC 166 ms
15,872 KB
testcase_02 AC 114 ms
13,056 KB
testcase_03 AC 131 ms
18,944 KB
testcase_04 AC 120 ms
18,304 KB
testcase_05 AC 202 ms
15,744 KB
testcase_06 AC 109 ms
14,848 KB
testcase_07 AC 151 ms
15,360 KB
testcase_08 AC 162 ms
22,144 KB
testcase_09 AC 181 ms
14,464 KB
testcase_10 AC 159 ms
18,688 KB
testcase_11 AC 192 ms
15,744 KB
testcase_12 AC 201 ms
19,072 KB
testcase_13 AC 81 ms
12,160 KB
testcase_14 AC 285 ms
15,616 KB
testcase_15 AC 134 ms
15,616 KB
testcase_16 AC 330 ms
18,816 KB
testcase_17 AC 185 ms
13,824 KB
testcase_18 AC 209 ms
15,360 KB
testcase_19 AC 93 ms
13,184 KB
testcase_20 AC 178 ms
13,568 KB
testcase_21 AC 300 ms
15,872 KB
testcase_22 AC 316 ms
18,816 KB
testcase_23 AC 224 ms
13,696 KB
testcase_24 AC 130 ms
18,176 KB
testcase_25 AC 206 ms
15,872 KB
testcase_26 AC 234 ms
18,944 KB
testcase_27 AC 205 ms
15,744 KB
testcase_28 AC 228 ms
18,688 KB
testcase_29 AC 272 ms
23,552 KB
testcase_30 AC 116 ms
13,568 KB
testcase_31 AC 133 ms
15,360 KB
testcase_32 AC 159 ms
16,512 KB
testcase_33 AC 306 ms
18,688 KB
testcase_34 AC 86 ms
12,288 KB
testcase_35 AC 203 ms
14,464 KB
testcase_36 AC 302 ms
22,144 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N, K = gets.split(" ").map{|s| s.to_i}
a = gets.split(" ").map{|s| s.to_i}
Q = gets.to_i
q = []
Q.times {
	q << gets.to_i
}

S = [a[0,K].sum]
0.upto(N-K-1) {|i|
	S << S[-1] - a[i] + a[i+K]
}

S.sort!

q.each {|x|
	if S[0] > x then
		puts 0
	elsif S[-1] <= x then
		puts S.length
	else
		puts S.bsearch_index{|y| y > x}
	end
}
0