結果

問題 No.1890 Many Sequences Sum Queries
ユーザー matcharate12matcharate12
提出日時 2022-03-28 16:09:19
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 671 bytes
コンパイル時間 1,417 ms
コンパイル使用メモリ 167,624 KB
実行使用メモリ 13,644 KB
最終ジャッジ日時 2024-11-25 05:52:15
合計ジャッジ時間 15,588 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,823 ms
13,644 KB
testcase_01 TLE -
testcase_02 AC 2 ms
13,640 KB
testcase_03 AC 1 ms
6,820 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 1 ms
6,816 KB
testcase_06 AC 3 ms
6,820 KB
testcase_07 AC 311 ms
6,816 KB
testcase_08 AC 108 ms
6,820 KB
testcase_09 AC 149 ms
6,820 KB
testcase_10 TLE -
testcase_11 AC 1,562 ms
6,816 KB
testcase_12 AC 519 ms
6,816 KB
testcase_13 AC 663 ms
6,816 KB
testcase_14 AC 292 ms
6,816 KB
testcase_15 AC 2 ms
6,816 KB
testcase_16 AC 2 ms
6,816 KB
testcase_17 AC 2 ms
6,816 KB
testcase_18 AC 2 ms
6,820 KB
testcase_19 AC 2 ms
6,816 KB
testcase_20 AC 1 ms
6,816 KB
testcase_21 AC 1 ms
6,816 KB
testcase_22 AC 1 ms
6,820 KB
testcase_23 AC 2 ms
6,820 KB
testcase_24 AC 1 ms
6,820 KB
testcase_25 AC 2 ms
11,556 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for(int i = 0; i < n; i++)
#define srep(i,a,b) for(int i = a; i < b; i++)
#define all(A) (A).begin(),A.end()
#define MOD 1000000007
using namespace std;
using ll = long long;
using P = pair<ll,ll>;
using Graph = vector<vector<int>>;
int siz(string s){return (int)s.size();}

ll B[101010],S[101010];
int main(void){
	int n,q; cin >> n >> q;
	int nn = 0;
	int p = 0;
	rep(i,n){
		int a; cin >> a;
		nn += a;
		rep(j,a) B[p] = j+1,p++;
	}
	rep(i,nn+1) S[i+1] = S[i]+B[i];

	rep(i,q){
		ll s; cin >> s;
		int ans = 0;
		rep(j,nn+1){
			if(S[ans] >= s) break;
			ans++;
		}
		cout << (ans == nn+1 ? -1 : ans) << endl;
	}
	return 0;
}
0