結果

問題 No.1093 区間の和 / Sum of Range
ユーザー kbyskbys
提出日時 2020-07-01 06:22:36
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,331 ms / 2,000 ms
コード長 254 bytes
コンパイル時間 194 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 50,484 KB
最終ジャッジ日時 2024-09-13 20:48:11
合計ジャッジ時間 35,566 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 520 ms
43,916 KB
testcase_01 AC 925 ms
45,328 KB
testcase_02 AC 696 ms
43,924 KB
testcase_03 AC 574 ms
48,644 KB
testcase_04 AC 559 ms
49,904 KB
testcase_05 AC 1,149 ms
44,820 KB
testcase_06 AC 624 ms
45,328 KB
testcase_07 AC 845 ms
45,456 KB
testcase_08 AC 752 ms
50,080 KB
testcase_09 AC 1,044 ms
44,048 KB
testcase_10 AC 787 ms
48,148 KB
testcase_11 AC 1,081 ms
45,332 KB
testcase_12 AC 824 ms
47,384 KB
testcase_13 AC 520 ms
44,048 KB
testcase_14 AC 1,163 ms
44,944 KB
testcase_15 AC 641 ms
45,460 KB
testcase_16 AC 1,274 ms
47,068 KB
testcase_17 AC 1,138 ms
43,920 KB
testcase_18 AC 903 ms
44,816 KB
testcase_19 AC 545 ms
43,956 KB
testcase_20 AC 830 ms
44,044 KB
testcase_21 AC 1,212 ms
44,688 KB
testcase_22 AC 1,195 ms
47,756 KB
testcase_23 AC 1,016 ms
44,180 KB
testcase_24 AC 595 ms
50,328 KB
testcase_25 AC 1,120 ms
45,204 KB
testcase_26 AC 929 ms
47,756 KB
testcase_27 AC 1,178 ms
44,816 KB
testcase_28 AC 911 ms
48,020 KB
testcase_29 AC 1,331 ms
50,484 KB
testcase_30 AC 620 ms
44,168 KB
testcase_31 AC 648 ms
45,204 KB
testcase_32 AC 719 ms
45,712 KB
testcase_33 AC 1,186 ms
48,020 KB
testcase_34 AC 593 ms
44,176 KB
testcase_35 AC 1,236 ms
43,924 KB
testcase_36 AC 1,060 ms
49,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np
import bisect

n, k = map(int,input().split())
A = list(map(int,input().split()))
Q = int(input())

c = np.cumsum([0]+A)
wide = c[k:] - c[:-k]
wide.sort()

for i in range(Q):
    x = int(input())
    print(bisect.bisect_right(wide, x))
0