結果

問題 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  
実行時間 669 ms / 2,000 ms
コード長 286 bytes
コンパイル時間 287 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 20,680 KB
最終ジャッジ日時 2024-11-25 07:40:59
合計ジャッジ時間 13,872 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,624 KB
testcase_01 AC 331 ms
15,040 KB
testcase_02 AC 166 ms
11,776 KB
testcase_03 AC 114 ms
19,392 KB
testcase_04 AC 86 ms
20,160 KB
testcase_05 AC 479 ms
14,820 KB
testcase_06 AC 109 ms
13,792 KB
testcase_07 AC 281 ms
14,444 KB
testcase_08 AC 225 ms
20,132 KB
testcase_09 AC 419 ms
12,928 KB
testcase_10 AC 276 ms
17,552 KB
testcase_11 AC 451 ms
15,108 KB
testcase_12 AC 268 ms
16,876 KB
testcase_13 AC 30 ms
11,008 KB
testcase_14 AC 522 ms
13,808 KB
testcase_15 AC 126 ms
14,584 KB
testcase_16 AC 622 ms
16,644 KB
testcase_17 AC 546 ms
12,544 KB
testcase_18 AC 312 ms
13,440 KB
testcase_19 AC 49 ms
11,904 KB
testcase_20 AC 254 ms
12,032 KB
testcase_21 AC 532 ms
13,920 KB
testcase_22 AC 525 ms
16,928 KB
testcase_23 AC 390 ms
12,288 KB
testcase_24 AC 100 ms
19,460 KB
testcase_25 AC 507 ms
14,876 KB
testcase_26 AC 370 ms
17,616 KB
testcase_27 AC 509 ms
13,796 KB
testcase_28 AC 327 ms
17,392 KB
testcase_29 AC 669 ms
20,680 KB
testcase_30 AC 97 ms
12,416 KB
testcase_31 AC 133 ms
14,460 KB
testcase_32 AC 183 ms
15,456 KB
testcase_33 AC 513 ms
17,212 KB
testcase_34 AC 57 ms
11,392 KB
testcase_35 AC 547 ms
11,776 KB
testcase_36 AC 439 ms
19,556 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