結果

問題 No.1093 区間の和 / Sum of Range
ユーザー pluto77pluto77
提出日時 2020-06-25 11:50:32
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 668 ms / 2,000 ms
コード長 262 bytes
コンパイル時間 81 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 20,568 KB
最終ジャッジ日時 2024-07-03 20:51:49
合計ジャッジ時間 13,942 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 361 ms
15,056 KB
testcase_02 AC 183 ms
12,032 KB
testcase_03 AC 111 ms
19,404 KB
testcase_04 AC 83 ms
20,164 KB
testcase_05 AC 518 ms
14,832 KB
testcase_06 AC 129 ms
13,932 KB
testcase_07 AC 290 ms
14,720 KB
testcase_08 AC 235 ms
20,192 KB
testcase_09 AC 469 ms
12,928 KB
testcase_10 AC 258 ms
17,564 KB
testcase_11 AC 488 ms
15,116 KB
testcase_12 AC 292 ms
17,144 KB
testcase_13 AC 32 ms
10,880 KB
testcase_14 AC 507 ms
13,952 KB
testcase_15 AC 140 ms
14,720 KB
testcase_16 AC 580 ms
16,724 KB
testcase_17 AC 504 ms
12,672 KB
testcase_18 AC 339 ms
13,824 KB
testcase_19 AC 52 ms
12,032 KB
testcase_20 AC 278 ms
11,904 KB
testcase_21 AC 584 ms
14,184 KB
testcase_22 AC 568 ms
16,940 KB
testcase_23 AC 414 ms
12,392 KB
testcase_24 AC 102 ms
19,520 KB
testcase_25 AC 507 ms
15,020 KB
testcase_26 AC 385 ms
17,756 KB
testcase_27 AC 536 ms
13,808 KB
testcase_28 AC 336 ms
17,624 KB
testcase_29 AC 668 ms
20,568 KB
testcase_30 AC 107 ms
12,500 KB
testcase_31 AC 138 ms
14,720 KB
testcase_32 AC 193 ms
15,852 KB
testcase_33 AC 576 ms
17,348 KB
testcase_34 AC 61 ms
11,520 KB
testcase_35 AC 609 ms
11,776 KB
testcase_36 AC 472 ms
19,700 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki1093
from bisect import *
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_right(s,x))
0