結果

問題 No.1093 区間の和 / Sum of Range
ユーザー 37zigen37zigen
提出日時 2020-07-02 06:55:30
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 701 ms / 2,000 ms
コード長 258 bytes
コンパイル時間 333 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 20,560 KB
最終ジャッジ日時 2024-09-14 17:34:14
合計ジャッジ時間 14,768 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 375 ms
15,060 KB
testcase_02 AC 185 ms
11,776 KB
testcase_03 AC 122 ms
19,396 KB
testcase_04 AC 91 ms
20,280 KB
testcase_05 AC 536 ms
14,696 KB
testcase_06 AC 125 ms
13,812 KB
testcase_07 AC 308 ms
14,780 KB
testcase_08 AC 256 ms
20,184 KB
testcase_09 AC 458 ms
12,928 KB
testcase_10 AC 276 ms
17,560 KB
testcase_11 AC 505 ms
15,112 KB
testcase_12 AC 300 ms
16,876 KB
testcase_13 AC 35 ms
10,880 KB
testcase_14 AC 534 ms
13,940 KB
testcase_15 AC 146 ms
14,584 KB
testcase_16 AC 635 ms
16,648 KB
testcase_17 AC 525 ms
12,672 KB
testcase_18 AC 353 ms
13,824 KB
testcase_19 AC 58 ms
12,160 KB
testcase_20 AC 290 ms
12,032 KB
testcase_21 AC 602 ms
14,052 KB
testcase_22 AC 590 ms
17,056 KB
testcase_23 AC 446 ms
12,384 KB
testcase_24 AC 112 ms
19,508 KB
testcase_25 AC 529 ms
14,848 KB
testcase_26 AC 390 ms
17,616 KB
testcase_27 AC 566 ms
13,812 KB
testcase_28 AC 360 ms
17,628 KB
testcase_29 AC 701 ms
20,560 KB
testcase_30 AC 111 ms
12,620 KB
testcase_31 AC 144 ms
14,592 KB
testcase_32 AC 202 ms
15,584 KB
testcase_33 AC 595 ms
17,468 KB
testcase_34 AC 65 ms
11,520 KB
testcase_35 AC 625 ms
11,904 KB
testcase_36 AC 506 ms
19,692 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect
N,K=map(int,input().split())
a=[int(x) for x in input().split()]
S=[0]*(N-K+1)
S[0]=sum(a[:K])
for i in range(1,len(S)):
    S[i]=S[i-1]-a[i-1]+a[K+i-1]
S.sort()
Q=int(input())
for i in range(Q):
    x=int(input())
    print(bisect.bisect(S,x))
0