結果

問題 No.1093 区間の和 / Sum of Range
ユーザー Konton7Konton7
提出日時 2020-06-26 22:02:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 342 ms / 2,000 ms
コード長 306 bytes
コンパイル時間 151 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 90,240 KB
最終ジャッジ日時 2024-07-04 21:11:03
合計ジャッジ時間 10,022 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
51,712 KB
testcase_01 AC 225 ms
80,000 KB
testcase_02 AC 158 ms
77,056 KB
testcase_03 AC 130 ms
87,808 KB
testcase_04 AC 79 ms
78,208 KB
testcase_05 AC 298 ms
79,616 KB
testcase_06 AC 135 ms
78,848 KB
testcase_07 AC 202 ms
79,104 KB
testcase_08 AC 181 ms
87,424 KB
testcase_09 AC 272 ms
77,440 KB
testcase_10 AC 184 ms
83,584 KB
testcase_11 AC 266 ms
80,512 KB
testcase_12 AC 213 ms
84,224 KB
testcase_13 AC 58 ms
61,568 KB
testcase_14 AC 281 ms
78,592 KB
testcase_15 AC 137 ms
79,360 KB
testcase_16 AC 326 ms
82,048 KB
testcase_17 AC 267 ms
77,056 KB
testcase_18 AC 216 ms
78,336 KB
testcase_19 AC 105 ms
76,416 KB
testcase_20 AC 192 ms
76,800 KB
testcase_21 AC 315 ms
78,848 KB
testcase_22 AC 310 ms
82,688 KB
testcase_23 AC 250 ms
76,928 KB
testcase_24 AC 125 ms
83,840 KB
testcase_25 AC 293 ms
79,488 KB
testcase_26 AC 239 ms
84,352 KB
testcase_27 AC 284 ms
78,464 KB
testcase_28 AC 222 ms
83,968 KB
testcase_29 AC 342 ms
90,240 KB
testcase_30 AC 125 ms
76,928 KB
testcase_31 AC 134 ms
80,384 KB
testcase_32 AC 159 ms
80,512 KB
testcase_33 AC 305 ms
83,328 KB
testcase_34 AC 113 ms
76,928 KB
testcase_35 AC 306 ms
76,928 KB
testcase_36 AC 271 ms
86,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect

n, k = [int(v) for v in input().split()]
a = [int(v) for v in input().split()]
s = sum(a[:k])
s_list = [s]
for i in range(n - k):
    s += (a[k + i] - a[i])
    s_list.append(s)
s_list.sort()

q = int(input())
for i in range(q):
    x = int(input())
    print(bisect.bisect_right(s_list, x))
0