結果

問題 No.1093 区間の和 / Sum of Range
ユーザー KKT89KKT89
提出日時 2020-06-27 10:40:18
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 150 ms / 2,000 ms
コード長 708 bytes
コンパイル時間 805 ms
コンパイル使用メモリ 89,964 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-05 08:59:04
合計ジャッジ時間 6,689 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 81 ms
5,376 KB
testcase_02 AC 40 ms
5,376 KB
testcase_03 AC 16 ms
5,376 KB
testcase_04 AC 13 ms
5,376 KB
testcase_05 AC 119 ms
5,376 KB
testcase_06 AC 23 ms
5,376 KB
testcase_07 AC 65 ms
5,376 KB
testcase_08 AC 50 ms
5,376 KB
testcase_09 AC 108 ms
5,376 KB
testcase_10 AC 56 ms
5,376 KB
testcase_11 AC 106 ms
5,376 KB
testcase_12 AC 60 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 117 ms
5,376 KB
testcase_15 AC 26 ms
5,376 KB
testcase_16 AC 138 ms
5,376 KB
testcase_17 AC 118 ms
5,376 KB
testcase_18 AC 77 ms
5,376 KB
testcase_19 AC 8 ms
5,376 KB
testcase_20 AC 63 ms
5,376 KB
testcase_21 AC 145 ms
5,376 KB
testcase_22 AC 133 ms
5,376 KB
testcase_23 AC 102 ms
5,376 KB
testcase_24 AC 20 ms
5,376 KB
testcase_25 AC 116 ms
5,376 KB
testcase_26 AC 81 ms
5,376 KB
testcase_27 AC 123 ms
5,376 KB
testcase_28 AC 76 ms
5,376 KB
testcase_29 AC 150 ms
5,376 KB
testcase_30 AC 19 ms
5,376 KB
testcase_31 AC 25 ms
5,376 KB
testcase_32 AC 41 ms
5,376 KB
testcase_33 AC 128 ms
5,376 KB
testcase_34 AC 10 ms
5,376 KB
testcase_35 AC 139 ms
5,376 KB
testcase_36 AC 108 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
#include <map>
#include <queue>
#include <cstdio>
#include <set>
using namespace std;
typedef long long int ll;

int main(){
    cin.tie(nullptr);
    ios::sync_with_stdio(false);
    int n,k; cin >> n >> k;
    vector<int> a(n);
    vector<int> v;
    for(int i=0;i<n;i++){
        cin >> a[i];
    }
    int sum=0;
    for(int i=0;i<n;i++){
        sum+=a[i];
        if(i>=k){
            sum-=a[i-k];
        }
        if(i>=k-1){
            v.push_back(sum);
        }
    }
    sort(v.begin(), v.end());
    int q; cin >> q;
    while(q--){
        int x; cin >> x;
        cout << upper_bound(v.begin(), v.end(),x)-v.begin() << endl;
    }
}
0