結果

問題 No.1093 区間の和 / Sum of Range
ユーザー tanon710tanon710
提出日時 2020-07-08 00:22:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 156 ms / 2,000 ms
コード長 385 bytes
コンパイル時間 189 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 96,256 KB
最終ジャッジ日時 2024-10-01 22:32:01
合計ジャッジ時間 5,867 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,712 KB
testcase_01 AC 121 ms
82,080 KB
testcase_02 AC 94 ms
76,288 KB
testcase_03 AC 103 ms
92,928 KB
testcase_04 AC 76 ms
84,608 KB
testcase_05 AC 130 ms
80,640 KB
testcase_06 AC 86 ms
79,488 KB
testcase_07 AC 105 ms
80,128 KB
testcase_08 AC 116 ms
93,312 KB
testcase_09 AC 118 ms
77,824 KB
testcase_10 AC 113 ms
87,444 KB
testcase_11 AC 109 ms
81,920 KB
testcase_12 AC 107 ms
87,296 KB
testcase_13 AC 50 ms
61,312 KB
testcase_14 AC 112 ms
79,232 KB
testcase_15 AC 82 ms
80,384 KB
testcase_16 AC 132 ms
85,376 KB
testcase_17 AC 102 ms
77,440 KB
testcase_18 AC 99 ms
79,616 KB
testcase_19 AC 66 ms
73,088 KB
testcase_20 AC 93 ms
76,468 KB
testcase_21 AC 123 ms
80,000 KB
testcase_22 AC 139 ms
85,760 KB
testcase_23 AC 103 ms
76,672 KB
testcase_24 AC 89 ms
88,320 KB
testcase_25 AC 104 ms
81,280 KB
testcase_26 AC 122 ms
88,628 KB
testcase_27 AC 109 ms
79,872 KB
testcase_28 AC 113 ms
88,064 KB
testcase_29 AC 156 ms
96,256 KB
testcase_30 AC 74 ms
77,052 KB
testcase_31 AC 82 ms
81,700 KB
testcase_32 AC 89 ms
81,792 KB
testcase_33 AC 129 ms
87,104 KB
testcase_34 AC 61 ms
72,960 KB
testcase_35 AC 105 ms
76,928 KB
testcase_36 AC 130 ms
92,052 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3

import bisect
import sys
input=sys.stdin.readline

n,k=map(int,input().split())
arr=list(map(int,input().split()))
vals=[]
tmp=sum(arr[:k])
vals.append(tmp)
for i in range(k,n):
    tmp+=arr[i]
    tmp-=arr[i-k]
    vals.append(tmp)
vals=sorted(vals)
q=int(input())
for _ in range(q):
    x=int(input())
    print(bisect.bisect_right(vals,x))
0