結果

問題 No.1093 区間の和 / Sum of Range
ユーザー hiragnhiragn
提出日時 2022-12-02 15:57:59
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 643 ms / 2,000 ms
コード長 426 bytes
コンパイル時間 389 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 23,836 KB
最終ジャッジ日時 2024-10-09 17:45:39
合計ジャッジ時間 14,142 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,880 KB
testcase_01 AC 338 ms
15,092 KB
testcase_02 AC 175 ms
11,904 KB
testcase_03 AC 98 ms
21,224 KB
testcase_04 AC 80 ms
20,308 KB
testcase_05 AC 498 ms
14,984 KB
testcase_06 AC 118 ms
14,512 KB
testcase_07 AC 285 ms
14,972 KB
testcase_08 AC 227 ms
20,820 KB
testcase_09 AC 427 ms
13,440 KB
testcase_10 AC 246 ms
18,128 KB
testcase_11 AC 473 ms
16,436 KB
testcase_12 AC 275 ms
18,884 KB
testcase_13 AC 33 ms
11,008 KB
testcase_14 AC 504 ms
15,024 KB
testcase_15 AC 131 ms
15,076 KB
testcase_16 AC 584 ms
17,424 KB
testcase_17 AC 504 ms
12,800 KB
testcase_18 AC 322 ms
14,884 KB
testcase_19 AC 55 ms
12,288 KB
testcase_20 AC 266 ms
12,032 KB
testcase_21 AC 572 ms
14,660 KB
testcase_22 AC 552 ms
18,256 KB
testcase_23 AC 416 ms
12,272 KB
testcase_24 AC 100 ms
19,592 KB
testcase_25 AC 493 ms
15,032 KB
testcase_26 AC 353 ms
18,996 KB
testcase_27 AC 522 ms
14,776 KB
testcase_28 AC 332 ms
18,852 KB
testcase_29 AC 643 ms
23,836 KB
testcase_30 AC 104 ms
12,640 KB
testcase_31 AC 128 ms
15,360 KB
testcase_32 AC 188 ms
16,200 KB
testcase_33 AC 541 ms
17,968 KB
testcase_34 AC 61 ms
11,520 KB
testcase_35 AC 576 ms
11,904 KB
testcase_36 AC 459 ms
20,780 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_right
from itertools import accumulate


def main():
    n, k = map(int, input().split())
    a = list(map(int, input().split()))

    acc = list(accumulate(a))
    s = [acc[k - 1]] + [acc[i + k - 1] - acc[i - 1] for i in range(1, n - k + 1)]
    s.sort()

    q = int(input())
    for _ in range(q):
        x = int(input())
        print(bisect_right(s, x))


if __name__ == "__main__":
    main()
0