結果

問題 No.1093 区間の和 / Sum of Range
ユーザー rlangevinrlangevin
提出日時 2023-01-12 20:01:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 160 ms / 2,000 ms
コード長 333 bytes
コンパイル時間 158 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 95,744 KB
最終ジャッジ日時 2024-06-06 02:27:34
合計ジャッジ時間 7,423 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
51,712 KB
testcase_01 AC 120 ms
81,664 KB
testcase_02 AC 100 ms
76,288 KB
testcase_03 AC 108 ms
92,544 KB
testcase_04 AC 78 ms
83,968 KB
testcase_05 AC 133 ms
80,384 KB
testcase_06 AC 95 ms
79,872 KB
testcase_07 AC 110 ms
80,256 KB
testcase_08 AC 123 ms
92,544 KB
testcase_09 AC 124 ms
78,336 KB
testcase_10 AC 119 ms
87,296 KB
testcase_11 AC 112 ms
81,664 KB
testcase_12 AC 114 ms
86,912 KB
testcase_13 AC 50 ms
61,440 KB
testcase_14 AC 118 ms
79,232 KB
testcase_15 AC 91 ms
80,640 KB
testcase_16 AC 134 ms
85,248 KB
testcase_17 AC 108 ms
77,056 KB
testcase_18 AC 106 ms
79,104 KB
testcase_19 AC 74 ms
73,088 KB
testcase_20 AC 98 ms
76,416 KB
testcase_21 AC 129 ms
80,000 KB
testcase_22 AC 144 ms
85,760 KB
testcase_23 AC 112 ms
76,928 KB
testcase_24 AC 95 ms
88,064 KB
testcase_25 AC 118 ms
81,408 KB
testcase_26 AC 125 ms
87,936 KB
testcase_27 AC 119 ms
79,360 KB
testcase_28 AC 117 ms
87,296 KB
testcase_29 AC 160 ms
95,744 KB
testcase_30 AC 86 ms
76,672 KB
testcase_31 AC 87 ms
81,280 KB
testcase_32 AC 98 ms
82,176 KB
testcase_33 AC 138 ms
86,656 KB
testcase_34 AC 71 ms
72,320 KB
testcase_35 AC 112 ms
76,416 KB
testcase_36 AC 134 ms
91,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline = sys.stdin.readline
from bisect import *

N, K = map(int, readline().split())
A = list(map(int, readline().split()))
v = sum(A[:K])
L = [v]
for i in range(K, N):
    v -= A[i - K]
    v += A[i]
    L.append(v)
L.sort()

Q = int(readline())
for _ in range(Q):
    x = int(readline())
    print(bisect_right(L, x))
0