結果

問題 No.1093 区間の和 / Sum of Range
ユーザー AkabaEriAkabaEri
提出日時 2020-07-27 22:03:40
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 207 ms / 2,000 ms
コード長 682 bytes
コンパイル時間 1,719 ms
コンパイル使用メモリ 172,680 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-28 20:17:42
合計ジャッジ時間 6,928 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 106 ms
5,376 KB
testcase_02 AC 51 ms
5,376 KB
testcase_03 AC 33 ms
5,376 KB
testcase_04 AC 30 ms
5,376 KB
testcase_05 AC 159 ms
5,376 KB
testcase_06 AC 34 ms
5,376 KB
testcase_07 AC 88 ms
5,376 KB
testcase_08 AC 76 ms
5,376 KB
testcase_09 AC 137 ms
5,376 KB
testcase_10 AC 79 ms
5,376 KB
testcase_11 AC 131 ms
5,376 KB
testcase_12 AC 78 ms
5,376 KB
testcase_13 AC 3 ms
5,376 KB
testcase_14 AC 140 ms
5,376 KB
testcase_15 AC 35 ms
5,376 KB
testcase_16 AC 168 ms
5,376 KB
testcase_17 AC 138 ms
5,376 KB
testcase_18 AC 89 ms
5,376 KB
testcase_19 AC 11 ms
5,376 KB
testcase_20 AC 75 ms
5,376 KB
testcase_21 AC 159 ms
5,376 KB
testcase_22 AC 159 ms
5,376 KB
testcase_23 AC 116 ms
5,376 KB
testcase_24 AC 36 ms
5,376 KB
testcase_25 AC 146 ms
5,376 KB
testcase_26 AC 106 ms
5,376 KB
testcase_27 AC 150 ms
5,376 KB
testcase_28 AC 99 ms
5,376 KB
testcase_29 AC 207 ms
5,376 KB
testcase_30 AC 25 ms
5,376 KB
testcase_31 AC 35 ms
5,376 KB
testcase_32 AC 56 ms
5,376 KB
testcase_33 AC 163 ms
5,376 KB
testcase_34 AC 12 ms
5,376 KB
testcase_35 AC 166 ms
5,376 KB
testcase_36 AC 139 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i, n) for(int i= 0; i < (n); i++)
using ll= long long int;
using namespace std;
template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; }
template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; }
ll mod= 1e9 + 7;



int main(){
  int n,k;
  cin >>n >>k;
  ll a[n];
  rep(i,n)cin >> a[i];
  vector<ll> b={};
  ll d=0;
  rep(i,k-1)d+=a[i];
  for(int i=0;i<n-k+1;i++){
    d+=a[i+k-1];
    b.push_back(d);
    d-=a[i];
  }
  sort(b.begin(),b.end());
  int q;
  cin >> q;

  rep(i,q){
    int x;
    cin >> x;
    cout << upper_bound(b.begin(),b.end(),x)-b.begin() << endl;
  }
}
0