結果

問題 No.1093 区間の和 / Sum of Range
ユーザー brthyyjpbrthyyjp
提出日時 2020-09-10 02:47:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 339 ms / 2,000 ms
コード長 313 bytes
コンパイル時間 222 ms
コンパイル使用メモリ 82,068 KB
実行使用メモリ 95,616 KB
最終ジャッジ日時 2024-05-10 00:18:01
合計ジャッジ時間 11,063 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,712 KB
testcase_01 AC 227 ms
82,560 KB
testcase_02 AC 149 ms
76,928 KB
testcase_03 AC 131 ms
92,800 KB
testcase_04 AC 75 ms
84,736 KB
testcase_05 AC 286 ms
81,280 KB
testcase_06 AC 133 ms
79,872 KB
testcase_07 AC 190 ms
80,640 KB
testcase_08 AC 177 ms
92,800 KB
testcase_09 AC 255 ms
78,592 KB
testcase_10 AC 184 ms
87,040 KB
testcase_11 AC 245 ms
81,920 KB
testcase_12 AC 193 ms
86,912 KB
testcase_13 AC 52 ms
61,952 KB
testcase_14 AC 271 ms
79,804 KB
testcase_15 AC 134 ms
81,152 KB
testcase_16 AC 307 ms
85,632 KB
testcase_17 AC 271 ms
77,312 KB
testcase_18 AC 204 ms
79,616 KB
testcase_19 AC 104 ms
76,928 KB
testcase_20 AC 178 ms
77,312 KB
testcase_21 AC 309 ms
80,128 KB
testcase_22 AC 301 ms
85,840 KB
testcase_23 AC 241 ms
77,056 KB
testcase_24 AC 117 ms
88,648 KB
testcase_25 AC 279 ms
81,536 KB
testcase_26 AC 220 ms
88,280 KB
testcase_27 AC 283 ms
80,000 KB
testcase_28 AC 212 ms
87,552 KB
testcase_29 AC 339 ms
95,616 KB
testcase_30 AC 114 ms
77,364 KB
testcase_31 AC 134 ms
81,920 KB
testcase_32 AC 156 ms
82,432 KB
testcase_33 AC 285 ms
87,040 KB
testcase_34 AC 95 ms
76,724 KB
testcase_35 AC 292 ms
77,184 KB
testcase_36 AC 263 ms
91,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = map(int, input().split())
A = list(map(int, input().split()))

L = []
S = sum(A[0:k])
L.append(S)
for i in range(n-k):
    S -= A[i]
    S += A[i+k]
    L.append(S)
#print(L)
L.sort()
q = int(input())
import bisect
for i in range(q):
    x = int(input())
    ans = bisect.bisect_right(L, x)
    print(ans)
0