結果

問題 No.1093 区間の和 / Sum of Range
ユーザー first_vilfirst_vil
提出日時 2020-06-25 10:28:31
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,288 ms / 2,000 ms
コード長 339 bytes
コンパイル時間 129 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 20,852 KB
最終ジャッジ日時 2024-07-03 20:50:34
合計ジャッジ時間 23,915 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,624 KB
testcase_01 AC 644 ms
14,704 KB
testcase_02 AC 283 ms
11,776 KB
testcase_03 AC 131 ms
18,984 KB
testcase_04 AC 99 ms
20,296 KB
testcase_05 AC 950 ms
14,836 KB
testcase_06 AC 197 ms
13,952 KB
testcase_07 AC 518 ms
14,840 KB
testcase_08 AC 386 ms
20,072 KB
testcase_09 AC 785 ms
13,056 KB
testcase_10 AC 456 ms
17,560 KB
testcase_11 AC 847 ms
14,896 KB
testcase_12 AC 506 ms
17,148 KB
testcase_13 AC 35 ms
11,008 KB
testcase_14 AC 983 ms
13,952 KB
testcase_15 AC 226 ms
14,680 KB
testcase_16 AC 1,177 ms
16,660 KB
testcase_17 AC 847 ms
12,672 KB
testcase_18 AC 642 ms
14,080 KB
testcase_19 AC 72 ms
12,032 KB
testcase_20 AC 485 ms
11,904 KB
testcase_21 AC 1,101 ms
14,264 KB
testcase_22 AC 1,053 ms
17,272 KB
testcase_23 AC 688 ms
12,396 KB
testcase_24 AC 150 ms
20,224 KB
testcase_25 AC 785 ms
14,932 KB
testcase_26 AC 668 ms
17,188 KB
testcase_27 AC 1,047 ms
13,908 KB
testcase_28 AC 622 ms
17,664 KB
testcase_29 AC 1,288 ms
20,852 KB
testcase_30 AC 166 ms
12,672 KB
testcase_31 AC 204 ms
14,976 KB
testcase_32 AC 327 ms
15,292 KB
testcase_33 AC 1,044 ms
17,552 KB
testcase_34 AC 82 ms
11,520 KB
testcase_35 AC 1,084 ms
11,776 KB
testcase_36 AC 881 ms
19,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k=map(int,input().split())
a=[0]+list(map(int,input().split()))
for i in range(n):
    a[i+1]+=a[i]
s=sorted([a[i+k]-a[i] for i in range(n-k+1)])

q=int(input())
for i in range(q):
    x=int(input())
    l=-1;r=n-k+1
    while r-l>1:
        mid=l+r>>1
        if s[mid]<=x:
            l=mid
        else:
            r=mid
    print(r)
0