結果

問題 No.1093 区間の和 / Sum of Range
ユーザー tonnnura172tonnnura172
提出日時 2020-06-24 04:25:07
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 278 ms / 2,000 ms
コード長 1,020 bytes
コンパイル時間 114 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 24,480 KB
最終ジャッジ日時 2024-07-03 19:52:45
合計ジャッジ時間 7,136 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
11,264 KB
testcase_01 AC 150 ms
17,656 KB
testcase_02 AC 78 ms
13,312 KB
testcase_03 AC 117 ms
20,012 KB
testcase_04 AC 90 ms
20,928 KB
testcase_05 AC 184 ms
17,760 KB
testcase_06 AC 70 ms
14,848 KB
testcase_07 AC 120 ms
16,196 KB
testcase_08 AC 144 ms
21,284 KB
testcase_09 AC 157 ms
16,128 KB
testcase_10 AC 137 ms
18,480 KB
testcase_11 AC 175 ms
17,840 KB
testcase_12 AC 154 ms
18,444 KB
testcase_13 AC 34 ms
11,520 KB
testcase_14 AC 185 ms
18,816 KB
testcase_15 AC 83 ms
15,360 KB
testcase_16 AC 222 ms
21,484 KB
testcase_17 AC 158 ms
15,872 KB
testcase_18 AC 136 ms
16,768 KB
testcase_19 AC 45 ms
12,672 KB
testcase_20 AC 107 ms
14,848 KB
testcase_21 AC 194 ms
19,348 KB
testcase_22 AC 218 ms
21,196 KB
testcase_23 AC 140 ms
14,976 KB
testcase_24 AC 83 ms
19,988 KB
testcase_25 AC 165 ms
17,820 KB
testcase_26 AC 177 ms
19,632 KB
testcase_27 AC 188 ms
18,936 KB
testcase_28 AC 164 ms
19,100 KB
testcase_29 AC 278 ms
24,480 KB
testcase_30 AC 62 ms
13,312 KB
testcase_31 AC 90 ms
15,428 KB
testcase_32 AC 99 ms
16,032 KB
testcase_33 AC 223 ms
21,316 KB
testcase_34 AC 45 ms
12,160 KB
testcase_35 AC 182 ms
18,304 KB
testcase_36 AC 210 ms
21,748 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys, re
from collections import deque, defaultdict, Counter
from math import ceil, sqrt, hypot, factorial, pi, sin, cos, radians, gcd, log2
from itertools import accumulate, permutations, combinations, product
from operator import itemgetter, mul, add
from copy import deepcopy
from string import ascii_lowercase, ascii_uppercase, digits
from bisect import bisect, bisect_left
from heapq import heappush, heappop
from functools import reduce, lru_cache
def input(): return sys.stdin.readline().strip()
def INT(): return int(input())
def MAP(): return map(int, input().split())
def LIST(): return list(map(int, input().split()))
def ZIP(n): return zip(*(MAP() for _ in range(n)))
sys.setrecursionlimit(10 ** 9)
INF = float('inf')
mod = 10 ** 9 + 7

N, K = MAP()
a = LIST()
tmp = sum(a[:K])
S = [0]*(N-K+1)
for i in range(N-K+1):
    S[i] = tmp
    tmp -= a[i]
    if i+K < N:
        tmp += a[i+K]

S.sort()

Q = INT()
ans = [0]*Q

for i in range(Q):
    x = INT()
    ans[i] = bisect(S, x)

print(*ans, sep="\n")
0