結果

問題 No.1093 区間の和 / Sum of Range
ユーザー 37zigen37zigen
提出日時 2020-07-02 06:44:12
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,249 ms / 2,000 ms
コード長 354 bytes
コンパイル時間 188 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 20,580 KB
最終ジャッジ日時 2024-09-14 17:20:55
合計ジャッジ時間 23,962 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,624 KB
testcase_01 AC 634 ms
15,132 KB
testcase_02 AC 285 ms
11,648 KB
testcase_03 AC 132 ms
19,408 KB
testcase_04 AC 93 ms
20,316 KB
testcase_05 AC 904 ms
14,708 KB
testcase_06 AC 182 ms
13,824 KB
testcase_07 AC 502 ms
14,668 KB
testcase_08 AC 384 ms
20,148 KB
testcase_09 AC 750 ms
12,928 KB
testcase_10 AC 447 ms
17,452 KB
testcase_11 AC 833 ms
15,044 KB
testcase_12 AC 514 ms
16,908 KB
testcase_13 AC 34 ms
10,880 KB
testcase_14 AC 983 ms
13,832 KB
testcase_15 AC 218 ms
14,604 KB
testcase_16 AC 1,133 ms
16,540 KB
testcase_17 AC 844 ms
12,672 KB
testcase_18 AC 627 ms
13,928 KB
testcase_19 AC 71 ms
12,160 KB
testcase_20 AC 491 ms
11,904 KB
testcase_21 AC 1,050 ms
14,072 KB
testcase_22 AC 1,050 ms
16,952 KB
testcase_23 AC 710 ms
12,272 KB
testcase_24 AC 140 ms
19,520 KB
testcase_25 AC 777 ms
14,808 KB
testcase_26 AC 669 ms
17,508 KB
testcase_27 AC 1,005 ms
13,824 KB
testcase_28 AC 638 ms
17,416 KB
testcase_29 AC 1,249 ms
20,580 KB
testcase_30 AC 167 ms
12,416 KB
testcase_31 AC 209 ms
14,592 KB
testcase_32 AC 325 ms
15,648 KB
testcase_33 AC 1,040 ms
17,484 KB
testcase_34 AC 80 ms
11,392 KB
testcase_35 AC 1,078 ms
11,904 KB
testcase_36 AC 870 ms
19,576 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K=map(int,input().split())
a=[int(x) for x in input().split()]
S=[0]*(N-K+1)
S[0]=sum(a[0:K])
for i in range(1,len(S)):
    S[i]=S[i-1]-a[i-1]+a[K+i-1]
S.sort()
Q=int(input())
for i in range(Q):
    x=int(input())
    u=len(S)
    v=-1
    while u-v>1:
        m=(u+v)//2
        if S[m]<=x:
            v=m
        else:
            u=m
    print(v+1)
0