結果

問題 No.1890 Many Sequences Sum Queries
ユーザー flippergoflippergo
提出日時 2024-12-12 12:14:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 361 ms / 2,000 ms
コード長 365 bytes
コンパイル時間 468 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 83,072 KB
最終ジャッジ日時 2024-12-12 12:14:22
合計ジャッジ時間 6,335 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 319 ms
80,000 KB
testcase_01 AC 361 ms
82,816 KB
testcase_02 AC 40 ms
52,096 KB
testcase_03 AC 39 ms
52,736 KB
testcase_04 AC 43 ms
58,368 KB
testcase_05 AC 39 ms
51,968 KB
testcase_06 AC 44 ms
59,904 KB
testcase_07 AC 183 ms
81,304 KB
testcase_08 AC 118 ms
82,632 KB
testcase_09 AC 122 ms
83,072 KB
testcase_10 AC 357 ms
81,920 KB
testcase_11 AC 204 ms
82,008 KB
testcase_12 AC 255 ms
81,996 KB
testcase_13 AC 266 ms
81,024 KB
testcase_14 AC 183 ms
82,048 KB
testcase_15 AC 42 ms
51,968 KB
testcase_16 AC 40 ms
51,968 KB
testcase_17 AC 39 ms
51,968 KB
testcase_18 AC 39 ms
51,968 KB
testcase_19 AC 40 ms
51,968 KB
testcase_20 AC 40 ms
51,712 KB
testcase_21 AC 39 ms
51,968 KB
testcase_22 AC 39 ms
52,224 KB
testcase_23 AC 39 ms
52,352 KB
testcase_24 AC 40 ms
51,968 KB
testcase_25 AC 39 ms
51,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_left
N,Q = map(int,input().split())
A = list(map(int,input().split()))
B = []
for i in range(N):
    B += list(range(1,A[i]+1))
C = [0]*len(B)
C[0] = B[0]
for i in range(1,len(B)):
    C[i] = C[i-1]+B[i]
for _ in range(Q):
    s = int(input())
    ind = bisect_left(C,s)
    if ind==len(B):
        print(-1)
    else:
        print(ind+1)
0