結果

問題 No.1093 区間の和 / Sum of Range
ユーザー 👑 rin204rin204
提出日時 2020-08-13 08:15:33
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 675 ms / 2,000 ms
コード長 322 bytes
コンパイル時間 103 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 20,552 KB
最終ジャッジ日時 2024-10-09 19:01:43
合計ジャッジ時間 14,467 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 364 ms
15,048 KB
testcase_02 AC 181 ms
11,776 KB
testcase_03 AC 116 ms
19,384 KB
testcase_04 AC 83 ms
20,272 KB
testcase_05 AC 525 ms
14,692 KB
testcase_06 AC 122 ms
13,804 KB
testcase_07 AC 296 ms
14,648 KB
testcase_08 AC 245 ms
20,176 KB
testcase_09 AC 475 ms
13,056 KB
testcase_10 AC 268 ms
17,676 KB
testcase_11 AC 489 ms
15,104 KB
testcase_12 AC 296 ms
16,840 KB
testcase_13 AC 34 ms
11,008 KB
testcase_14 AC 530 ms
13,884 KB
testcase_15 AC 140 ms
14,708 KB
testcase_16 AC 620 ms
16,772 KB
testcase_17 AC 525 ms
12,544 KB
testcase_18 AC 345 ms
13,568 KB
testcase_19 AC 57 ms
12,160 KB
testcase_20 AC 284 ms
11,904 KB
testcase_21 AC 608 ms
14,116 KB
testcase_22 AC 580 ms
17,052 KB
testcase_23 AC 440 ms
12,416 KB
testcase_24 AC 106 ms
19,628 KB
testcase_25 AC 531 ms
14,880 KB
testcase_26 AC 377 ms
17,612 KB
testcase_27 AC 550 ms
13,808 KB
testcase_28 AC 357 ms
17,520 KB
testcase_29 AC 675 ms
20,552 KB
testcase_30 AC 110 ms
12,416 KB
testcase_31 AC 139 ms
14,580 KB
testcase_32 AC 197 ms
15,584 KB
testcase_33 AC 568 ms
17,332 KB
testcase_34 AC 63 ms
11,392 KB
testcase_35 AC 603 ms
11,904 KB
testcase_36 AC 493 ms
19,680 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_right

n, k = map(int, input().split())
alst = list(map(int, input().split()))
total = sum(alst[:k])
lst = [total]
for i in range(n - k):
    total -= alst[i]
    total += alst[i + k]
    lst.append(total)
lst.sort()

q = int(input())
for _ in range(q):
    print(bisect_right(lst, int(input())))
0