結果

問題 No.1093 区間の和 / Sum of Range
ユーザー 双六双六
提出日時 2020-08-08 02:45:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 318 ms / 2,000 ms
コード長 584 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 82,632 KB
実行使用メモリ 102,016 KB
最終ジャッジ日時 2024-09-25 05:25:53
合計ジャッジ時間 10,575 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,760 KB
testcase_01 AC 219 ms
84,224 KB
testcase_02 AC 141 ms
77,056 KB
testcase_03 AC 126 ms
97,836 KB
testcase_04 AC 81 ms
93,312 KB
testcase_05 AC 279 ms
82,576 KB
testcase_06 AC 126 ms
81,792 KB
testcase_07 AC 186 ms
82,560 KB
testcase_08 AC 176 ms
98,688 KB
testcase_09 AC 247 ms
78,592 KB
testcase_10 AC 177 ms
90,624 KB
testcase_11 AC 242 ms
84,208 KB
testcase_12 AC 187 ms
90,624 KB
testcase_13 AC 54 ms
64,256 KB
testcase_14 AC 264 ms
80,640 KB
testcase_15 AC 125 ms
82,816 KB
testcase_16 AC 298 ms
88,780 KB
testcase_17 AC 246 ms
77,568 KB
testcase_18 AC 205 ms
81,152 KB
testcase_19 AC 97 ms
76,928 KB
testcase_20 AC 177 ms
77,056 KB
testcase_21 AC 302 ms
81,272 KB
testcase_22 AC 298 ms
89,088 KB
testcase_23 AC 231 ms
76,800 KB
testcase_24 AC 118 ms
93,136 KB
testcase_25 AC 260 ms
82,740 KB
testcase_26 AC 214 ms
92,040 KB
testcase_27 AC 262 ms
80,896 KB
testcase_28 AC 202 ms
91,520 KB
testcase_29 AC 318 ms
102,016 KB
testcase_30 AC 111 ms
77,696 KB
testcase_31 AC 124 ms
83,336 KB
testcase_32 AC 146 ms
84,736 KB
testcase_33 AC 285 ms
90,880 KB
testcase_34 AC 96 ms
77,184 KB
testcase_35 AC 282 ms
77,224 KB
testcase_36 AC 247 ms
97,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# import sys; input = sys.stdin.buffer.readline
# sys.setrecursionlimit(10**7)
from collections import defaultdict
con = 10 ** 9 + 7; INF = float("inf")
import bisect

def getlist():
	return list(map(int, input().split()))

#処理内容
def main():
	N, K = getlist()
	A = getlist()
	Asum = [0]
	for i in range(N):
		Asum.append(Asum[-1] + A[i])

	S = []
	for i in range(N - K + 1):
		S.append(Asum[i + K] - Asum[i])

	S.sort()
	# print(S)

	Q = int(input())
	for i in range(Q):
		x = int(input())
		ans = bisect.bisect_left(S, x + 1)
		print(ans)


if __name__ == '__main__':
	main()
0