結果

問題 No.1093 区間の和 / Sum of Range
ユーザー ttrttr
提出日時 2020-06-28 16:12:27
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 699 ms / 2,000 ms
コード長 302 bytes
コンパイル時間 124 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 20,540 KB
最終ジャッジ日時 2024-07-07 19:40:42
合計ジャッジ時間 16,432 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,624 KB
testcase_01 AC 372 ms
15,060 KB
testcase_02 AC 186 ms
11,904 KB
testcase_03 AC 124 ms
19,280 KB
testcase_04 AC 93 ms
20,168 KB
testcase_05 AC 538 ms
14,704 KB
testcase_06 AC 127 ms
13,684 KB
testcase_07 AC 303 ms
14,580 KB
testcase_08 AC 263 ms
20,068 KB
testcase_09 AC 470 ms
12,800 KB
testcase_10 AC 274 ms
17,572 KB
testcase_11 AC 498 ms
15,120 KB
testcase_12 AC 302 ms
16,896 KB
testcase_13 AC 34 ms
10,880 KB
testcase_14 AC 557 ms
13,700 KB
testcase_15 AC 145 ms
14,472 KB
testcase_16 AC 636 ms
16,772 KB
testcase_17 AC 517 ms
12,672 KB
testcase_18 AC 355 ms
13,952 KB
testcase_19 AC 57 ms
11,904 KB
testcase_20 AC 287 ms
12,032 KB
testcase_21 AC 614 ms
13,936 KB
testcase_22 AC 600 ms
16,944 KB
testcase_23 AC 439 ms
12,140 KB
testcase_24 AC 113 ms
19,524 KB
testcase_25 AC 523 ms
14,772 KB
testcase_26 AC 384 ms
17,636 KB
testcase_27 AC 578 ms
13,684 KB
testcase_28 AC 364 ms
17,660 KB
testcase_29 AC 699 ms
20,540 KB
testcase_30 AC 117 ms
12,632 KB
testcase_31 AC 143 ms
14,592 KB
testcase_32 AC 202 ms
15,600 KB
testcase_33 AC 592 ms
17,352 KB
testcase_34 AC 64 ms
11,392 KB
testcase_35 AC 605 ms
11,904 KB
testcase_36 AC 502 ms
19,572 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect
N,K = map(int, input().split())
A = [int(a) for a in input().split()]

num = sum(A[:K])
S = [num]
for i in range(N-K):
    num -= A[i]
    num += A[i+K]
    S.append(num)

S.sort()
Q = int(input())
for _ in range(Q):
    x = int(input())
    ans = bisect.bisect_right(S, x)
    print(ans)
0