結果

問題 No.1093 区間の和 / Sum of Range
ユーザー mkawa2mkawa2
提出日時 2021-06-10 16:29:37
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 279 ms / 2,000 ms
コード長 1,023 bytes
コンパイル時間 109 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 20,020 KB
最終ジャッジ日時 2024-11-30 01:55:03
合計ジャッジ時間 8,849 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,496 KB
testcase_01 AC 152 ms
14,568 KB
testcase_02 AC 77 ms
11,648 KB
testcase_03 AC 128 ms
18,512 KB
testcase_04 AC 121 ms
19,752 KB
testcase_05 AC 189 ms
14,480 KB
testcase_06 AC 78 ms
13,776 KB
testcase_07 AC 129 ms
14,664 KB
testcase_08 AC 159 ms
19,640 KB
testcase_09 AC 161 ms
12,928 KB
testcase_10 AC 146 ms
17,416 KB
testcase_11 AC 180 ms
14,632 KB
testcase_12 AC 156 ms
16,652 KB
testcase_13 AC 33 ms
10,880 KB
testcase_14 AC 186 ms
13,884 KB
testcase_15 AC 90 ms
14,684 KB
testcase_16 AC 233 ms
16,680 KB
testcase_17 AC 166 ms
12,544 KB
testcase_18 AC 137 ms
13,312 KB
testcase_19 AC 48 ms
12,160 KB
testcase_20 AC 107 ms
11,904 KB
testcase_21 AC 206 ms
14,036 KB
testcase_22 AC 225 ms
16,944 KB
testcase_23 AC 140 ms
12,288 KB
testcase_24 AC 119 ms
19,128 KB
testcase_25 AC 179 ms
14,616 KB
testcase_26 AC 181 ms
17,064 KB
testcase_27 AC 191 ms
13,616 KB
testcase_28 AC 174 ms
17,396 KB
testcase_29 AC 279 ms
20,020 KB
testcase_30 AC 65 ms
12,544 KB
testcase_31 AC 90 ms
14,460 KB
testcase_32 AC 110 ms
15,476 KB
testcase_33 AC 231 ms
17,452 KB
testcase_34 AC 43 ms
11,520 KB
testcase_35 AC 185 ms
11,776 KB
testcase_36 AC 229 ms
19,180 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

# sys.setrecursionlimit(10**6)
int1 = lambda x: int(x)-1
p2D = lambda x: print(*x, sep="\n")
def II(): return int(sys.stdin.buffer.readline())
def LI(): return list(map(int, sys.stdin.buffer.readline().split()))
def LI1(): return list(map(int1, sys.stdin.buffer.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def BI(): return sys.stdin.buffer.readline().rstrip()
def SI(): return sys.stdin.buffer.readline().rstrip().decode()
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
dij = [(0, 1), (1, 0), (1, 1), (1, -1)]
inf = 10**16
md = 998244353
# md = 10**9+7

from collections import deque
from bisect import bisect

n, k = LI()
aa = LI()
q = deque()
s = 0
ss = []
for a in aa:
    q.append(a)
    s += a
    if len(q) > k: s -= q.popleft()
    if len(q) == k: ss.append(s)

ss.sort()
for _ in range(II()):
    print(bisect(ss, II()))
0