結果

問題 No.1890 Many Sequences Sum Queries
ユーザー かもめのうでかもめのうで
提出日時 2023-09-26 12:39:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 270 ms / 2,000 ms
コード長 502 bytes
コンパイル時間 371 ms
コンパイル使用メモリ 81,900 KB
実行使用メモリ 88,556 KB
最終ジャッジ日時 2024-07-19 07:05:32
合計ジャッジ時間 3,915 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 254 ms
88,192 KB
testcase_01 AC 270 ms
88,224 KB
testcase_02 AC 35 ms
52,984 KB
testcase_03 AC 33 ms
53,000 KB
testcase_04 AC 38 ms
59,304 KB
testcase_05 AC 34 ms
52,456 KB
testcase_06 AC 43 ms
67,940 KB
testcase_07 AC 138 ms
88,420 KB
testcase_08 AC 77 ms
85,556 KB
testcase_09 AC 81 ms
86,676 KB
testcase_10 AC 255 ms
88,556 KB
testcase_11 AC 165 ms
88,260 KB
testcase_12 AC 200 ms
88,156 KB
testcase_13 AC 208 ms
88,124 KB
testcase_14 AC 143 ms
88,112 KB
testcase_15 AC 35 ms
52,940 KB
testcase_16 AC 32 ms
53,832 KB
testcase_17 AC 33 ms
52,088 KB
testcase_18 AC 32 ms
53,252 KB
testcase_19 AC 32 ms
53,276 KB
testcase_20 AC 32 ms
51,828 KB
testcase_21 AC 33 ms
54,120 KB
testcase_22 AC 35 ms
54,024 KB
testcase_23 AC 33 ms
53,624 KB
testcase_24 AC 36 ms
51,948 KB
testcase_25 AC 38 ms
52,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import accumulate
n, q = map(int, input().split())
a = list(map(int, input().split()))
b = []
for i in a:
    for j in range(1, i+1):
        b.append(j)
# print(b)
rui = list(accumulate(b, initial=0))
# print(rui)

for i in range(q):
    x = int(input())
    ng = -1
    ok = len(rui)
    while abs(ok-ng) > 1:
        mid = (ok+ng)//2
        if rui[mid] >= x:
            ok = mid
        else:
            ng = mid
    if ok == len(rui):
        print(-1)
    else:
        print(ok)
0