結果

問題 No.1093 区間の和 / Sum of Range
ユーザー 330Xs330Xs
提出日時 2022-02-05 15:02:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 322 ms / 2,000 ms
コード長 344 bytes
コンパイル時間 412 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 95,744 KB
最終ジャッジ日時 2024-06-11 13:34:20
合計ジャッジ時間 8,877 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,840 KB
testcase_01 AC 200 ms
81,792 KB
testcase_02 AC 139 ms
77,056 KB
testcase_03 AC 119 ms
92,288 KB
testcase_04 AC 74 ms
85,248 KB
testcase_05 AC 263 ms
81,024 KB
testcase_06 AC 123 ms
79,872 KB
testcase_07 AC 181 ms
81,024 KB
testcase_08 AC 161 ms
92,672 KB
testcase_09 AC 243 ms
78,208 KB
testcase_10 AC 169 ms
87,168 KB
testcase_11 AC 230 ms
81,792 KB
testcase_12 AC 174 ms
87,296 KB
testcase_13 AC 53 ms
62,464 KB
testcase_14 AC 257 ms
80,000 KB
testcase_15 AC 124 ms
80,768 KB
testcase_16 AC 293 ms
85,376 KB
testcase_17 AC 242 ms
77,184 KB
testcase_18 AC 195 ms
79,488 KB
testcase_19 AC 93 ms
76,800 KB
testcase_20 AC 175 ms
76,928 KB
testcase_21 AC 277 ms
80,256 KB
testcase_22 AC 281 ms
85,632 KB
testcase_23 AC 225 ms
76,928 KB
testcase_24 AC 116 ms
88,192 KB
testcase_25 AC 246 ms
81,152 KB
testcase_26 AC 201 ms
88,192 KB
testcase_27 AC 250 ms
80,384 KB
testcase_28 AC 196 ms
87,424 KB
testcase_29 AC 322 ms
95,744 KB
testcase_30 AC 112 ms
77,056 KB
testcase_31 AC 122 ms
81,664 KB
testcase_32 AC 145 ms
82,048 KB
testcase_33 AC 267 ms
86,784 KB
testcase_34 AC 94 ms
76,544 KB
testcase_35 AC 269 ms
76,928 KB
testcase_36 AC 252 ms
91,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_right
n,k = map(int,input().split())
a = list(map(int,input().split()))
aa = a[:k]
aa_sum = sum(aa)

s = []
s.append(aa_sum)
for i in range(n-k):
    s.append(aa_sum - a[i] + a[k+i])
    aa_sum = aa_sum - a[i] + a[k+i]

s.sort()
q = int(input())    
for _ in range(q):
    m = int(input())
    print(bisect_right(s,m))
0