結果

問題 No.1093 区間の和 / Sum of Range
ユーザー KeroruKeroru
提出日時 2020-06-25 19:32:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 345 ms / 2,000 ms
コード長 239 bytes
コンパイル時間 171 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 95,436 KB
最終ジャッジ日時 2024-07-03 21:43:19
合計ジャッジ時間 9,669 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,840 KB
testcase_01 AC 226 ms
81,920 KB
testcase_02 AC 149 ms
76,712 KB
testcase_03 AC 120 ms
92,592 KB
testcase_04 AC 73 ms
85,248 KB
testcase_05 AC 291 ms
80,496 KB
testcase_06 AC 123 ms
79,872 KB
testcase_07 AC 193 ms
80,468 KB
testcase_08 AC 174 ms
92,568 KB
testcase_09 AC 288 ms
78,040 KB
testcase_10 AC 181 ms
86,844 KB
testcase_11 AC 252 ms
81,740 KB
testcase_12 AC 186 ms
87,040 KB
testcase_13 AC 51 ms
62,336 KB
testcase_14 AC 282 ms
79,488 KB
testcase_15 AC 126 ms
80,560 KB
testcase_16 AC 321 ms
84,892 KB
testcase_17 AC 265 ms
76,928 KB
testcase_18 AC 208 ms
79,104 KB
testcase_19 AC 94 ms
76,672 KB
testcase_20 AC 184 ms
76,816 KB
testcase_21 AC 338 ms
79,616 KB
testcase_22 AC 336 ms
85,340 KB
testcase_23 AC 248 ms
76,628 KB
testcase_24 AC 116 ms
87,808 KB
testcase_25 AC 277 ms
80,492 KB
testcase_26 AC 221 ms
88,232 KB
testcase_27 AC 278 ms
79,656 KB
testcase_28 AC 216 ms
87,428 KB
testcase_29 AC 345 ms
95,436 KB
testcase_30 AC 113 ms
76,928 KB
testcase_31 AC 126 ms
81,280 KB
testcase_32 AC 150 ms
81,664 KB
testcase_33 AC 294 ms
86,852 KB
testcase_34 AC 95 ms
76,544 KB
testcase_35 AC 307 ms
77,312 KB
testcase_36 AC 269 ms
91,412 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect
n,k=map(int,input().split())
a=[0]
s=[]
for i in map(int,input().split()):
    a+=a[-1]+i,
for i in range(n-k+1):
    s+=a[k+i]-a[i],
s.sort()
q=int(input())
for i in range(q):
    x=int(input())
    print(bisect.bisect(s,x))
0