結果

問題 No.1093 区間の和 / Sum of Range
ユーザー yansi819yansi819
提出日時 2024-05-09 21:29:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 318 ms / 2,000 ms
コード長 447 bytes
コンパイル時間 290 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 91,392 KB
最終ジャッジ日時 2024-05-09 21:29:45
合計ジャッジ時間 10,057 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,968 KB
testcase_01 AC 207 ms
81,408 KB
testcase_02 AC 139 ms
77,056 KB
testcase_03 AC 115 ms
89,472 KB
testcase_04 AC 72 ms
82,816 KB
testcase_05 AC 268 ms
80,896 KB
testcase_06 AC 123 ms
79,872 KB
testcase_07 AC 200 ms
80,768 KB
testcase_08 AC 159 ms
91,392 KB
testcase_09 AC 232 ms
78,080 KB
testcase_10 AC 173 ms
85,760 KB
testcase_11 AC 225 ms
81,664 KB
testcase_12 AC 170 ms
84,608 KB
testcase_13 AC 63 ms
62,464 KB
testcase_14 AC 261 ms
80,000 KB
testcase_15 AC 124 ms
80,768 KB
testcase_16 AC 282 ms
84,352 KB
testcase_17 AC 239 ms
77,440 KB
testcase_18 AC 211 ms
79,872 KB
testcase_19 AC 99 ms
76,800 KB
testcase_20 AC 178 ms
77,056 KB
testcase_21 AC 279 ms
80,000 KB
testcase_22 AC 271 ms
84,224 KB
testcase_23 AC 219 ms
76,800 KB
testcase_24 AC 145 ms
88,448 KB
testcase_25 AC 246 ms
81,536 KB
testcase_26 AC 206 ms
85,632 KB
testcase_27 AC 241 ms
80,000 KB
testcase_28 AC 196 ms
85,760 KB
testcase_29 AC 318 ms
91,392 KB
testcase_30 AC 112 ms
77,568 KB
testcase_31 AC 121 ms
80,768 KB
testcase_32 AC 144 ms
82,176 KB
testcase_33 AC 264 ms
85,376 KB
testcase_34 AC 97 ms
76,800 KB
testcase_35 AC 290 ms
77,184 KB
testcase_36 AC 240 ms
89,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_right
N, K = map(int, input().split())
A = list(map(int, input().split()))
sumA = [0] * (N + 1)

for i in range(N):
    sumA[i + 1] = sumA[i] + A[i]

S = [0] * (N - K + 1)

for i in range(N - K + 1):
    S[i] = sumA[i + K] - sumA[i]
S.sort()
#print(sumA)
#print(S)

Q = int(input())
for _ in range(Q):
    x = int(input())
    ans = bisect_right(S, x)
    if ans < len(S) and S[ans] == x:
        ans += 1
    print(ans)
0