結果

問題 No.1890 Many Sequences Sum Queries
ユーザー kept1994kept1994
提出日時 2022-05-03 02:45:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 344 ms / 2,000 ms
コード長 593 bytes
コンパイル時間 165 ms
コンパイル使用メモリ 81,912 KB
実行使用メモリ 88,876 KB
最終ジャッジ日時 2024-07-02 06:41:36
合計ジャッジ時間 4,439 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 313 ms
88,412 KB
testcase_01 AC 344 ms
88,632 KB
testcase_02 AC 39 ms
52,276 KB
testcase_03 AC 38 ms
52,480 KB
testcase_04 AC 42 ms
59,136 KB
testcase_05 AC 38 ms
52,352 KB
testcase_06 AC 48 ms
65,792 KB
testcase_07 AC 180 ms
88,876 KB
testcase_08 AC 115 ms
88,448 KB
testcase_09 AC 121 ms
88,320 KB
testcase_10 AC 316 ms
88,364 KB
testcase_11 AC 205 ms
88,704 KB
testcase_12 AC 249 ms
88,528 KB
testcase_13 AC 258 ms
88,420 KB
testcase_14 AC 177 ms
88,352 KB
testcase_15 AC 39 ms
52,224 KB
testcase_16 AC 38 ms
52,864 KB
testcase_17 AC 39 ms
51,840 KB
testcase_18 AC 39 ms
51,876 KB
testcase_19 AC 39 ms
52,096 KB
testcase_20 AC 39 ms
52,480 KB
testcase_21 AC 39 ms
52,352 KB
testcase_22 AC 38 ms
52,480 KB
testcase_23 AC 39 ms
52,272 KB
testcase_24 AC 39 ms
52,332 KB
testcase_25 AC 39 ms
52,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
from bisect import bisect_left
from itertools import accumulate
import sys

MOD = 998244353

def main():
    N, Q = map(int, input().split())
    A = list(map(int, input().split()))
    B = []
    for aa in A:
        for i in range(1, aa + 1):
            B.append(i)
    SB = list(accumulate(B))
    m = len(SB)
    # print(SB)
    for _ in range(Q):
        S = int(input())
        if S == SB[-1]:
            print(m)
            continue
        ans = bisect_left(SB, S)
        print(ans + 1 if ans < m else -1)
    return

if __name__ == '__main__':
    main()

0