結果

問題 No.1093 区間の和 / Sum of Range
ユーザー DrDrpilotDrDrpilot
提出日時 2022-01-21 13:07:21
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 707 ms / 2,000 ms
コード長 286 bytes
コンパイル時間 125 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 20,560 KB
最終ジャッジ日時 2024-05-04 01:51:44
合計ジャッジ時間 14,411 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 358 ms
15,168 KB
testcase_02 AC 171 ms
11,904 KB
testcase_03 AC 108 ms
19,388 KB
testcase_04 AC 76 ms
20,420 KB
testcase_05 AC 499 ms
14,948 KB
testcase_06 AC 115 ms
13,796 KB
testcase_07 AC 294 ms
14,824 KB
testcase_08 AC 231 ms
20,180 KB
testcase_09 AC 456 ms
12,928 KB
testcase_10 AC 241 ms
17,680 KB
testcase_11 AC 533 ms
15,232 KB
testcase_12 AC 283 ms
16,968 KB
testcase_13 AC 31 ms
11,008 KB
testcase_14 AC 506 ms
13,936 KB
testcase_15 AC 131 ms
14,584 KB
testcase_16 AC 631 ms
16,644 KB
testcase_17 AC 496 ms
12,544 KB
testcase_18 AC 334 ms
14,076 KB
testcase_19 AC 57 ms
12,032 KB
testcase_20 AC 284 ms
12,160 KB
testcase_21 AC 561 ms
14,172 KB
testcase_22 AC 535 ms
16,928 KB
testcase_23 AC 403 ms
12,416 KB
testcase_24 AC 94 ms
19,636 KB
testcase_25 AC 486 ms
14,876 KB
testcase_26 AC 356 ms
17,740 KB
testcase_27 AC 532 ms
14,052 KB
testcase_28 AC 367 ms
17,520 KB
testcase_29 AC 707 ms
20,560 KB
testcase_30 AC 101 ms
12,672 KB
testcase_31 AC 124 ms
14,584 KB
testcase_32 AC 185 ms
15,584 KB
testcase_33 AC 552 ms
17,336 KB
testcase_34 AC 57 ms
11,520 KB
testcase_35 AC 618 ms
12,032 KB
testcase_36 AC 473 ms
19,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k=map(int,input().split())
a=list(map(int,input().split()))
now=sum(a[0:k])
s=[now]
for i in range(1,n-k+1):
    now+=a[i+k-1]
    now-=a[i-1]
    s.append(now)
import bisect
s.sort()
q=int(input())
for _ in range(q):
    x=int(input())
    ans=bisect.bisect_right(s,x)
    print(ans)
0