結果

問題 No.1890 Many Sequences Sum Queries
ユーザー Luke02561Luke02561
提出日時 2022-03-30 13:27:03
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 190 ms / 2,000 ms
コード長 541 bytes
コンパイル時間 2,335 ms
コンパイル使用メモリ 204,288 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-05-04 05:05:08
合計ジャッジ時間 4,835 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 184 ms
6,816 KB
testcase_01 AC 190 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 72 ms
6,940 KB
testcase_08 AC 16 ms
6,944 KB
testcase_09 AC 20 ms
6,940 KB
testcase_10 AC 181 ms
6,940 KB
testcase_11 AC 88 ms
6,940 KB
testcase_12 AC 127 ms
6,940 KB
testcase_13 AC 134 ms
6,944 KB
testcase_14 AC 70 ms
6,940 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 AC 2 ms
6,940 KB
testcase_17 AC 2 ms
6,944 KB
testcase_18 AC 2 ms
6,944 KB
testcase_19 AC 2 ms
6,944 KB
testcase_20 AC 2 ms
6,944 KB
testcase_21 AC 2 ms
6,944 KB
testcase_22 AC 2 ms
6,944 KB
testcase_23 AC 2 ms
6,940 KB
testcase_24 AC 2 ms
6,944 KB
testcase_25 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include"bits/stdc++.h"
#define rep(i,n) for(ll i=0;i<n;++i)
#define ALL(x) x.begin(),x.end()

using namespace std;
using ll = long long;

int main(){
    ll n, q;
    cin >> n >> q;
    vector<ll>b;
    b.push_back(0);
    rep(i, n) {
        ll a;
        cin >> a;
        rep(j, a) {
            b.push_back(b.back() + j + 1);
        }
    }
    rep(idx, q) {
        ll s;
        cin >> s;

        auto itr = lower_bound(ALL(b), s);
        if(itr == b.end()) cout << -1 << endl;
        else cout << itr - b.begin() << endl;
    }
}
0