結果

問題 No.1093 区間の和 / Sum of Range
ユーザー trineutrontrineutron
提出日時 2020-06-24 07:26:25
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 701 ms / 2,000 ms
コード長 296 bytes
コンパイル時間 176 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 20,684 KB
最終ジャッジ日時 2024-07-03 19:56:57
合計ジャッジ時間 14,900 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 371 ms
15,052 KB
testcase_02 AC 187 ms
11,904 KB
testcase_03 AC 112 ms
19,392 KB
testcase_04 AC 81 ms
20,284 KB
testcase_05 AC 539 ms
14,692 KB
testcase_06 AC 124 ms
13,932 KB
testcase_07 AC 302 ms
14,772 KB
testcase_08 AC 251 ms
20,436 KB
testcase_09 AC 468 ms
13,056 KB
testcase_10 AC 274 ms
17,680 KB
testcase_11 AC 507 ms
15,108 KB
testcase_12 AC 300 ms
16,876 KB
testcase_13 AC 32 ms
11,136 KB
testcase_14 AC 553 ms
13,936 KB
testcase_15 AC 144 ms
14,836 KB
testcase_16 AC 641 ms
16,640 KB
testcase_17 AC 528 ms
12,544 KB
testcase_18 AC 359 ms
13,560 KB
testcase_19 AC 56 ms
12,160 KB
testcase_20 AC 292 ms
11,904 KB
testcase_21 AC 608 ms
14,048 KB
testcase_22 AC 585 ms
16,928 KB
testcase_23 AC 457 ms
12,288 KB
testcase_24 AC 104 ms
19,632 KB
testcase_25 AC 528 ms
15,008 KB
testcase_26 AC 378 ms
17,612 KB
testcase_27 AC 573 ms
13,932 KB
testcase_28 AC 366 ms
17,648 KB
testcase_29 AC 701 ms
20,684 KB
testcase_30 AC 111 ms
12,492 KB
testcase_31 AC 140 ms
14,720 KB
testcase_32 AC 204 ms
15,584 KB
testcase_33 AC 585 ms
17,468 KB
testcase_34 AC 63 ms
11,264 KB
testcase_35 AC 610 ms
11,776 KB
testcase_36 AC 500 ms
19,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect
n, k = map(int, input().split())
a = list(map(int, input().split()))
s = [0] * (n - k + 1)
s[0] = sum(a[:k])
for i in range(1, n - k + 1):
    s[i] = s[i - 1] + a[i + k - 1] - a[i - 1]
s.sort()
q = int(input())
for i in range(q):
    x = int(input())
    print(bisect.bisect(s, x))
0