結果

問題 No.1093 区間の和 / Sum of Range
ユーザー takakintakakin
提出日時 2020-07-25 21:13:32
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 281 ms / 2,000 ms
コード長 304 bytes
コンパイル時間 464 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 20,716 KB
最終ジャッジ日時 2024-06-27 16:01:33
合計ジャッジ時間 8,799 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 153 ms
15,072 KB
testcase_02 AC 79 ms
11,904 KB
testcase_03 AC 108 ms
19,416 KB
testcase_04 AC 89 ms
20,184 KB
testcase_05 AC 195 ms
14,848 KB
testcase_06 AC 70 ms
13,824 KB
testcase_07 AC 124 ms
14,724 KB
testcase_08 AC 139 ms
20,208 KB
testcase_09 AC 161 ms
13,056 KB
testcase_10 AC 136 ms
17,588 KB
testcase_11 AC 180 ms
15,132 KB
testcase_12 AC 153 ms
17,028 KB
testcase_13 AC 32 ms
11,136 KB
testcase_14 AC 189 ms
13,968 KB
testcase_15 AC 81 ms
14,736 KB
testcase_16 AC 228 ms
16,676 KB
testcase_17 AC 172 ms
12,544 KB
testcase_18 AC 139 ms
13,952 KB
testcase_19 AC 42 ms
12,288 KB
testcase_20 AC 109 ms
12,032 KB
testcase_21 AC 208 ms
14,148 KB
testcase_22 AC 228 ms
16,952 KB
testcase_23 AC 147 ms
12,408 KB
testcase_24 AC 86 ms
19,584 KB
testcase_25 AC 176 ms
14,912 KB
testcase_26 AC 175 ms
17,772 KB
testcase_27 AC 196 ms
13,824 KB
testcase_28 AC 164 ms
17,676 KB
testcase_29 AC 281 ms
20,716 KB
testcase_30 AC 62 ms
12,544 KB
testcase_31 AC 91 ms
14,720 KB
testcase_32 AC 99 ms
15,776 KB
testcase_33 AC 224 ms
17,364 KB
testcase_34 AC 43 ms
11,648 KB
testcase_35 AC 198 ms
12,032 KB
testcase_36 AC 218 ms
19,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=lambda: sys.stdin.readline().rstrip()
import bisect
n,k=map(int,input().split())
A=[int(i) for i in input().split()]

cur=sum(A[:k])
S=[cur]
for i in range(k,n):
	cur+=A[i]-A[i-k]
	S.append(cur)
S.sort()

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