結果

問題 No.1890 Many Sequences Sum Queries
ユーザー roarisroaris
提出日時 2022-04-05 18:34:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 107 ms / 2,000 ms
コード長 558 bytes
コンパイル時間 338 ms
コンパイル使用メモリ 82,508 KB
実行使用メモリ 76,456 KB
最終ジャッジ日時 2024-11-26 22:29:21
合計ジャッジ時間 3,171 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
76,324 KB
testcase_01 AC 107 ms
76,216 KB
testcase_02 AC 34 ms
52,740 KB
testcase_03 AC 33 ms
53,084 KB
testcase_04 AC 34 ms
53,940 KB
testcase_05 AC 35 ms
52,732 KB
testcase_06 AC 34 ms
52,820 KB
testcase_07 AC 76 ms
76,188 KB
testcase_08 AC 60 ms
72,972 KB
testcase_09 AC 63 ms
76,112 KB
testcase_10 AC 101 ms
76,188 KB
testcase_11 AC 80 ms
76,032 KB
testcase_12 AC 96 ms
76,024 KB
testcase_13 AC 93 ms
76,456 KB
testcase_14 AC 74 ms
76,372 KB
testcase_15 AC 34 ms
52,568 KB
testcase_16 AC 35 ms
53,276 KB
testcase_17 AC 33 ms
52,432 KB
testcase_18 AC 34 ms
52,592 KB
testcase_19 AC 35 ms
53,492 KB
testcase_20 AC 34 ms
53,188 KB
testcase_21 AC 36 ms
53,812 KB
testcase_22 AC 35 ms
52,840 KB
testcase_23 AC 38 ms
54,036 KB
testcase_24 AC 38 ms
52,816 KB
testcase_25 AC 38 ms
52,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from bisect import *

N, Q = map(int, input().split())
A = list(map(int, input().split()))
acc = [0]
s_acc = [0]

for Ai in A:
    acc.append(acc[-1]+Ai)
    s_acc.append(s_acc[-1]+Ai*(Ai+1)//2)

for _ in range(Q):
    S = int(input())
    
    if s_acc[-1]<S:
        print(-1)
        continue
    
    i = bisect_left(s_acc, S)
    l, r = 1, A[i-1]
    
    while l<=r:
        m = (l+r)//2
        
        if m*(m+1)//2>=S-s_acc[i-1]:
            r = m-1
        else:
            l = m+1
    
    print(acc[i-1]+l)
0