結果
問題 | No.1890 Many Sequences Sum Queries |
ユーザー | HIcoder |
提出日時 | 2023-07-14 17:01:03 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 179 ms / 2,000 ms |
コード長 | 923 bytes |
コンパイル時間 | 1,117 ms |
コンパイル使用メモリ | 114,572 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-16 01:54:28 |
合計ジャッジ時間 | 4,348 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 163 ms
5,248 KB |
testcase_01 | AC | 165 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 3 ms
5,376 KB |
testcase_07 | AC | 68 ms
5,376 KB |
testcase_08 | AC | 16 ms
5,376 KB |
testcase_09 | AC | 20 ms
5,376 KB |
testcase_10 | AC | 179 ms
5,376 KB |
testcase_11 | AC | 87 ms
5,376 KB |
testcase_12 | AC | 115 ms
5,376 KB |
testcase_13 | AC | 119 ms
5,376 KB |
testcase_14 | AC | 65 ms
5,376 KB |
testcase_15 | AC | 2 ms
5,376 KB |
testcase_16 | AC | 2 ms
5,376 KB |
testcase_17 | AC | 1 ms
5,376 KB |
testcase_18 | AC | 2 ms
5,376 KB |
testcase_19 | AC | 2 ms
5,376 KB |
testcase_20 | AC | 1 ms
5,376 KB |
testcase_21 | AC | 2 ms
5,376 KB |
testcase_22 | AC | 2 ms
5,376 KB |
testcase_23 | AC | 2 ms
5,376 KB |
testcase_24 | AC | 1 ms
5,376 KB |
testcase_25 | AC | 2 ms
5,376 KB |
ソースコード
#include<iostream> #include<set> #include<algorithm> #include<vector> #include<string> #include<set> #include<map> #include<numeric> #include<queue> #include<cmath> #include <unordered_set> using namespace std; typedef long long ll; const ll INF=1LL<<60; typedef pair<ll,ll> P; typedef pair<int,P> PP; const ll MOD=1e9+7; int main(){ int N,Q; cin>>N>>Q; vector<int> A(N); vector<int> B; for(int i=0;i<N;i++){ cin>>A[i]; for(int j=1;j<=A[i];j++){ B.push_back(j); } } int n=B.size(); vector<ll> sumB(n); sumB[0]=B[0]; for(int i=1;i<n;i++){ sumB[i]=sumB[i-1]+B[i]; } for(int q=0;q<Q;q++){ ll S; cin>>S; auto it=lower_bound(sumB.begin(),sumB.end(),S); if(it==sumB.end()){ cout<<-1<<endl; }else{ int c=it-sumB.begin(); cout<<c+1<<endl; } } }