結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 633 ms
15,004 KB
testcase_02 AC 289 ms
11,648 KB
testcase_03 AC 136 ms
19,536 KB
testcase_04 AC 93 ms
20,188 KB
testcase_05 AC 906 ms
14,840 KB
testcase_06 AC 185 ms
13,696 KB
testcase_07 AC 484 ms
14,488 KB
testcase_08 AC 400 ms
20,064 KB
testcase_09 AC 751 ms
12,800 KB
testcase_10 AC 442 ms
17,448 KB
testcase_11 AC 832 ms
15,048 KB
testcase_12 AC 494 ms
16,900 KB
testcase_13 AC 35 ms
11,008 KB
testcase_14 AC 971 ms
13,832 KB
testcase_15 AC 222 ms
14,604 KB
testcase_16 AC 1,133 ms
16,540 KB
testcase_17 AC 852 ms
12,672 KB
testcase_18 AC 616 ms
13,672 KB
testcase_19 AC 71 ms
12,160 KB
testcase_20 AC 494 ms
11,904 KB
testcase_21 AC 1,072 ms
13,940 KB
testcase_22 AC 1,071 ms
16,952 KB
testcase_23 AC 688 ms
12,148 KB
testcase_24 AC 138 ms
19,524 KB
testcase_25 AC 746 ms
14,812 KB
testcase_26 AC 661 ms
17,632 KB
testcase_27 AC 1,049 ms
13,952 KB
testcase_28 AC 619 ms
17,544 KB
testcase_29 AC 1,217 ms
20,576 KB
testcase_30 AC 165 ms
12,288 KB
testcase_31 AC 210 ms
14,592 KB
testcase_32 AC 327 ms
15,608 KB
testcase_33 AC 1,063 ms
17,360 KB
testcase_34 AC 81 ms
11,520 KB
testcase_35 AC 1,048 ms
11,904 KB
testcase_36 AC 858 ms
19,584 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[: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