結果

問題 No.1093 区間の和 / Sum of Range
ユーザー vwxyzvwxyz
提出日時 2024-07-17 09:35:49
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 735 ms / 2,000 ms
コード長 268 bytes
コンパイル時間 274 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 20,708 KB
最終ジャッジ日時 2024-07-17 09:36:07
合計ジャッジ時間 17,151 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
10,624 KB
testcase_01 AC 378 ms
15,060 KB
testcase_02 AC 203 ms
11,776 KB
testcase_03 AC 115 ms
19,404 KB
testcase_04 AC 96 ms
20,300 KB
testcase_05 AC 553 ms
14,832 KB
testcase_06 AC 129 ms
13,812 KB
testcase_07 AC 319 ms
14,580 KB
testcase_08 AC 261 ms
20,192 KB
testcase_09 AC 486 ms
13,056 KB
testcase_10 AC 282 ms
17,824 KB
testcase_11 AC 516 ms
15,244 KB
testcase_12 AC 302 ms
17,024 KB
testcase_13 AC 34 ms
11,008 KB
testcase_14 AC 571 ms
13,828 KB
testcase_15 AC 146 ms
14,728 KB
testcase_16 AC 646 ms
16,788 KB
testcase_17 AC 557 ms
12,672 KB
testcase_18 AC 357 ms
13,824 KB
testcase_19 AC 58 ms
12,288 KB
testcase_20 AC 293 ms
11,904 KB
testcase_21 AC 634 ms
14,140 KB
testcase_22 AC 613 ms
17,068 KB
testcase_23 AC 452 ms
12,396 KB
testcase_24 AC 121 ms
19,652 KB
testcase_25 AC 534 ms
15,028 KB
testcase_26 AC 381 ms
17,632 KB
testcase_27 AC 592 ms
13,808 KB
testcase_28 AC 377 ms
17,532 KB
testcase_29 AC 735 ms
20,708 KB
testcase_30 AC 112 ms
12,508 KB
testcase_31 AC 143 ms
14,720 KB
testcase_32 AC 215 ms
15,600 KB
testcase_33 AC 601 ms
17,604 KB
testcase_34 AC 66 ms
11,392 KB
testcase_35 AC 615 ms
11,904 KB
testcase_36 AC 531 ms
19,572 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect

N,K=map(int,input().split())
A=[0]+list(map(int,input().split()))
for i in range(1,N+1):
    A[i]+=A[i-1]
S=[A[i+K]-A[i] for i in range(N-K+1)]
S.sort()
Q=int(input())
for q in range(Q):
    x=int(input())
    ans=bisect.bisect_right(S,x)
    print(ans)
0