結果

問題 No.1093 区間の和 / Sum of Range
ユーザー ああいいああいい
提出日時 2021-12-25 10:27:08
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,143 ms / 2,000 ms
コード長 569 bytes
コンパイル時間 153 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 20,580 KB
最終ジャッジ日時 2024-09-21 12:12:43
合計ジャッジ時間 21,403 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
10,624 KB
testcase_01 AC 491 ms
15,008 KB
testcase_02 AC 237 ms
11,776 KB
testcase_03 AC 137 ms
19,220 KB
testcase_04 AC 102 ms
20,184 KB
testcase_05 AC 703 ms
14,604 KB
testcase_06 AC 156 ms
13,696 KB
testcase_07 AC 388 ms
14,552 KB
testcase_08 AC 327 ms
20,072 KB
testcase_09 AC 593 ms
12,800 KB
testcase_10 AC 351 ms
17,580 KB
testcase_11 AC 823 ms
15,048 KB
testcase_12 AC 510 ms
16,780 KB
testcase_13 AC 35 ms
10,880 KB
testcase_14 AC 997 ms
13,912 KB
testcase_15 AC 225 ms
14,604 KB
testcase_16 AC 1,143 ms
16,540 KB
testcase_17 AC 840 ms
12,544 KB
testcase_18 AC 625 ms
13,672 KB
testcase_19 AC 72 ms
12,032 KB
testcase_20 AC 494 ms
11,904 KB
testcase_21 AC 1,064 ms
14,076 KB
testcase_22 AC 1,052 ms
16,948 KB
testcase_23 AC 701 ms
12,288 KB
testcase_24 AC 150 ms
19,528 KB
testcase_25 AC 767 ms
14,940 KB
testcase_26 AC 662 ms
17,640 KB
testcase_27 AC 556 ms
13,824 KB
testcase_28 AC 620 ms
17,544 KB
testcase_29 AC 955 ms
20,580 KB
testcase_30 AC 167 ms
12,416 KB
testcase_31 AC 211 ms
14,592 KB
testcase_32 AC 332 ms
15,732 KB
testcase_33 AC 1,056 ms
17,356 KB
testcase_34 AC 82 ms
11,392 KB
testcase_35 AC 597 ms
11,904 KB
testcase_36 AC 878 ms
19,580 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K = map(int,input().split())
a = list(map(int,input().split()))

S = []

ans = 0
for i in range(K):
    ans += a[i]
S.append(ans)
j = 1
while j + K -1 < N:
    ans = S[-1] + a[j+K-1] - a[j-1]
    S.append(ans)
    j += 1
S.sort()
Q = int(input())
for _ in range(Q):
    x = int(input())
    if S[-1] <= x:
        print(len(S))
    else:
        end = len(S) - 1
        start = -1
        while end - start > 1:
            mid = (start + end) // 2
            if S[mid] > x:
                end = mid
            else:
                start = mid
        print(end)
0