結果

問題 No.1890 Many Sequences Sum Queries
ユーザー rlangevinrlangevin
提出日時 2023-01-11 20:34:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 301 ms / 2,000 ms
コード長 361 bytes
コンパイル時間 284 ms
コンパイル使用メモリ 82,028 KB
実行使用メモリ 83,072 KB
最終ジャッジ日時 2024-06-01 23:13:14
合計ジャッジ時間 4,140 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 274 ms
78,920 KB
testcase_01 AC 301 ms
82,920 KB
testcase_02 AC 33 ms
51,840 KB
testcase_03 AC 34 ms
52,352 KB
testcase_04 AC 36 ms
58,112 KB
testcase_05 AC 33 ms
52,096 KB
testcase_06 AC 38 ms
59,392 KB
testcase_07 AC 162 ms
81,792 KB
testcase_08 AC 97 ms
82,688 KB
testcase_09 AC 105 ms
83,072 KB
testcase_10 AC 285 ms
81,408 KB
testcase_11 AC 178 ms
82,304 KB
testcase_12 AC 230 ms
81,988 KB
testcase_13 AC 232 ms
81,200 KB
testcase_14 AC 167 ms
81,664 KB
testcase_15 AC 35 ms
51,968 KB
testcase_16 AC 33 ms
51,840 KB
testcase_17 AC 34 ms
52,224 KB
testcase_18 AC 34 ms
52,480 KB
testcase_19 AC 33 ms
52,224 KB
testcase_20 AC 33 ms
51,840 KB
testcase_21 AC 33 ms
51,968 KB
testcase_22 AC 34 ms
51,968 KB
testcase_23 AC 37 ms
52,392 KB
testcase_24 AC 36 ms
52,224 KB
testcase_25 AC 34 ms
52,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import *

N, Q = map(int, input().split())
A = list(map(int, input().split()))
L = []
for a in A:
    L.extend(list(range(1, a + 1)))
M = len(L)
Ac = [0] * (M + 1)
for i in range(M):
    Ac[i + 1] = Ac[i] + L[i]

for i in range(Q):
    s = int(input())
    ind = bisect_left(Ac, s)
    if ind == M + 1:
        print(-1)
    else:
        print(ind)
0