結果

問題 No.1093 区間の和 / Sum of Range
ユーザー ch1channnch1channn
提出日時 2022-12-14 12:01:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 346 ms / 2,000 ms
コード長 484 bytes
コンパイル時間 292 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 95,488 KB
最終ジャッジ日時 2024-11-08 03:26:31
合計ジャッジ時間 12,108 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
51,840 KB
testcase_01 AC 234 ms
81,792 KB
testcase_02 AC 164 ms
76,800 KB
testcase_03 AC 141 ms
92,416 KB
testcase_04 AC 85 ms
85,248 KB
testcase_05 AC 301 ms
81,280 KB
testcase_06 AC 141 ms
79,872 KB
testcase_07 AC 210 ms
80,512 KB
testcase_08 AC 187 ms
92,416 KB
testcase_09 AC 274 ms
77,824 KB
testcase_10 AC 195 ms
86,912 KB
testcase_11 AC 263 ms
81,792 KB
testcase_12 AC 201 ms
87,040 KB
testcase_13 AC 60 ms
61,824 KB
testcase_14 AC 286 ms
79,360 KB
testcase_15 AC 144 ms
81,280 KB
testcase_16 AC 333 ms
85,632 KB
testcase_17 AC 272 ms
77,568 KB
testcase_18 AC 218 ms
79,872 KB
testcase_19 AC 108 ms
77,184 KB
testcase_20 AC 196 ms
76,800 KB
testcase_21 AC 320 ms
79,744 KB
testcase_22 AC 324 ms
85,632 KB
testcase_23 AC 254 ms
76,672 KB
testcase_24 AC 132 ms
87,936 KB
testcase_25 AC 279 ms
81,408 KB
testcase_26 AC 231 ms
87,936 KB
testcase_27 AC 291 ms
79,872 KB
testcase_28 AC 228 ms
87,424 KB
testcase_29 AC 346 ms
95,488 KB
testcase_30 AC 133 ms
77,184 KB
testcase_31 AC 142 ms
81,664 KB
testcase_32 AC 163 ms
82,304 KB
testcase_33 AC 304 ms
87,168 KB
testcase_34 AC 109 ms
76,800 KB
testcase_35 AC 306 ms
76,928 KB
testcase_36 AC 276 ms
91,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
if sys.platform =='ios':
	import clipboard
	a=clipboard.get()
	a = a.split('\n')
	text = '\n'.join(a)
	with open('input_file.txt','w') as f:
		f.write(text)
	sys.stdin = open('input_file.txt')
	
from bisect import bisect_right
n,k = map(int,input().split())
a = list(map(int,input().split()))
A = sum(a[:k])
s = []
s.append(A)

for i in range(n-k):
	A = A-a[i]+a[k+i]
	s.append(A)	
s.sort()
q = int(input())
for i in range(q):
	m = int(input())
	print(bisect_right(s,m))
	
0