結果

問題 No.1093 区間の和 / Sum of Range
ユーザー motmot
提出日時 2020-07-02 18:43:24
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 208 ms / 2,000 ms
コード長 941 bytes
コンパイル時間 769 ms
コンパイル使用メモリ 88,104 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-15 01:34:42
合計ジャッジ時間 7,733 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 108 ms
5,376 KB
testcase_02 AC 50 ms
5,376 KB
testcase_03 AC 33 ms
5,376 KB
testcase_04 AC 30 ms
5,376 KB
testcase_05 AC 155 ms
5,376 KB
testcase_06 AC 33 ms
5,376 KB
testcase_07 AC 88 ms
5,376 KB
testcase_08 AC 78 ms
5,376 KB
testcase_09 AC 136 ms
5,376 KB
testcase_10 AC 80 ms
5,376 KB
testcase_11 AC 130 ms
5,376 KB
testcase_12 AC 78 ms
5,376 KB
testcase_13 AC 3 ms
5,376 KB
testcase_14 AC 144 ms
5,376 KB
testcase_15 AC 37 ms
5,376 KB
testcase_16 AC 168 ms
5,376 KB
testcase_17 AC 136 ms
5,376 KB
testcase_18 AC 93 ms
5,376 KB
testcase_19 AC 11 ms
5,376 KB
testcase_20 AC 77 ms
5,376 KB
testcase_21 AC 167 ms
5,376 KB
testcase_22 AC 159 ms
5,376 KB
testcase_23 AC 118 ms
5,376 KB
testcase_24 AC 36 ms
5,376 KB
testcase_25 AC 147 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 208 ms
5,376 KB
testcase_30 AC 25 ms
5,376 KB
testcase_31 AC 35 ms
5,376 KB
testcase_32 AC 55 ms
5,376 KB
testcase_33 AC 163 ms
5,376 KB
testcase_34 AC 12 ms
5,376 KB
testcase_35 AC 165 ms
5,376 KB
testcase_36 AC 137 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<iomanip>
#include<cmath>
#include<string>
#include<vector>
#include<list>
#include<algorithm>
#include<map>
#include<set>
#include<queue>
#include<stack>
using namespace std;
typedef long long ll;
#define fi first
#define se second
#define mp make_pair
#define rep(i, n) for(int i=0;i<n;++i)
#define rrep(i, n) for(int i=n;i>=0;--i)
const int inf=1e9+7;
const ll mod=1e9+7;
const ll big=1e18;
const double PI=2*asin(1);

int main() {
  int N, K;
  cin>>N>>K;
  int a[N];
  for(int i=0;i<N;++i) cin>>a[i];
  vector<int> S;
  int tmp = 0;
  for(int i=0;i<K;++i){
    tmp += a[i];
  }
  S.push_back(tmp);
  for(int i=K;i<N;++i){
    tmp -= a[i-K];
    tmp += a[i];
    S.push_back(tmp);
  }
  sort(S.begin(), S.end());
  int Q;
  cin>>Q;
  int x;
  int ans[Q];
  for(int i=0;i<Q;++i){
    cin>>x;
    ans[i] = upper_bound(S.begin(), S.end(), x) - S.begin();
  }
  for(int i=0;i<Q;++i){
    cout<<ans[i]<<endl;
  }
}
0