結果

問題 No.1093 区間の和 / Sum of Range
ユーザー ThetaTheta
提出日時 2022-10-20 11:48:51
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 594 ms / 2,000 ms
コード長 478 bytes
コンパイル時間 73 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 20,728 KB
最終ジャッジ日時 2024-06-30 05:38:35
合計ジャッジ時間 12,385 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,752 KB
testcase_01 AC 308 ms
14,688 KB
testcase_02 AC 153 ms
11,776 KB
testcase_03 AC 85 ms
19,004 KB
testcase_04 AC 68 ms
20,448 KB
testcase_05 AC 453 ms
14,548 KB
testcase_06 AC 103 ms
13,952 KB
testcase_07 AC 262 ms
14,716 KB
testcase_08 AC 233 ms
20,208 KB
testcase_09 AC 416 ms
12,928 KB
testcase_10 AC 228 ms
17,568 KB
testcase_11 AC 415 ms
14,752 KB
testcase_12 AC 241 ms
16,916 KB
testcase_13 AC 30 ms
10,880 KB
testcase_14 AC 441 ms
13,992 KB
testcase_15 AC 118 ms
14,744 KB
testcase_16 AC 501 ms
16,808 KB
testcase_17 AC 433 ms
12,672 KB
testcase_18 AC 290 ms
13,868 KB
testcase_19 AC 45 ms
12,288 KB
testcase_20 AC 268 ms
11,904 KB
testcase_21 AC 594 ms
14,080 KB
testcase_22 AC 501 ms
17,408 KB
testcase_23 AC 378 ms
12,412 KB
testcase_24 AC 91 ms
19,464 KB
testcase_25 AC 467 ms
15,060 KB
testcase_26 AC 302 ms
17,212 KB
testcase_27 AC 480 ms
13,784 KB
testcase_28 AC 295 ms
17,556 KB
testcase_29 AC 573 ms
20,728 KB
testcase_30 AC 97 ms
12,416 KB
testcase_31 AC 110 ms
14,592 KB
testcase_32 AC 159 ms
15,400 KB
testcase_33 AC 480 ms
17,556 KB
testcase_34 AC 55 ms
11,520 KB
testcase_35 AC 567 ms
11,904 KB
testcase_36 AC 448 ms
19,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_right


def main():
    N, K = map(int, input().split())
    a = list(map(int, input().split()))

    range_sum = []
    for i in range(N-K+1):
        if not range_sum:
            range_sum.append(sum(a[:K]))
        else:
            range_sum.append(range_sum[-1] + a[i+K-1] - a[i-1])
    range_sum.sort()

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


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