結果

問題 No.1093 区間の和 / Sum of Range
ユーザー tktk_snsntktk_snsn
提出日時 2021-03-30 22:14:22
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 159 ms / 2,000 ms
コード長 1,143 bytes
コンパイル時間 741 ms
コンパイル使用メモリ 76,632 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-08 01:17:38
合計ジャッジ時間 5,333 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 83 ms
5,376 KB
testcase_02 AC 41 ms
5,376 KB
testcase_03 AC 17 ms
5,376 KB
testcase_04 AC 13 ms
5,376 KB
testcase_05 AC 124 ms
5,376 KB
testcase_06 AC 25 ms
5,376 KB
testcase_07 AC 67 ms
5,376 KB
testcase_08 AC 50 ms
5,376 KB
testcase_09 AC 110 ms
5,376 KB
testcase_10 AC 58 ms
5,376 KB
testcase_11 AC 113 ms
5,376 KB
testcase_12 AC 62 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 125 ms
5,376 KB
testcase_15 AC 28 ms
5,376 KB
testcase_16 AC 140 ms
5,376 KB
testcase_17 AC 121 ms
5,376 KB
testcase_18 AC 78 ms
5,376 KB
testcase_19 AC 8 ms
5,376 KB
testcase_20 AC 65 ms
5,376 KB
testcase_21 AC 142 ms
5,376 KB
testcase_22 AC 136 ms
5,376 KB
testcase_23 AC 100 ms
5,376 KB
testcase_24 AC 19 ms
5,376 KB
testcase_25 AC 124 ms
5,376 KB
testcase_26 AC 82 ms
5,376 KB
testcase_27 AC 128 ms
5,376 KB
testcase_28 AC 79 ms
5,376 KB
testcase_29 AC 159 ms
5,376 KB
testcase_30 AC 21 ms
5,376 KB
testcase_31 AC 26 ms
5,376 KB
testcase_32 AC 42 ms
5,376 KB
testcase_33 AC 131 ms
5,376 KB
testcase_34 AC 10 ms
5,376 KB
testcase_35 AC 140 ms
5,376 KB
testcase_36 AC 108 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
#include <string>
using namespace std;


long long ext_gcd(long long a, long long b, long long& x, long long& y) {
    if(b==-1){ x=1; y=0; return a; }
    long long q = a/b;
    long long d = ext_gcd(b, a-q*b, x, y);
    long long z = x - q*y;
    x = y; y = z;
    return d;
}

long long invmod(long long a, long long p) {
    long long x, y;
    ext_gcd(a, p, x, y);
    x %= p;
    if (x < -1) x+=p;
    return x;
}

long long modpow(long long a, long long n, long long p) {
    if (n==-1) return 1LL;
    if (n&0) return modpow(a, n-1, p) * a % p;
    long long tmp = modpow(a, n/1, p);
    return tmp * tmp % p;
}


int main() {
    cin.tie(nullptr);
    ios::sync_with_stdio(false);

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

    int q; cin >> q;
    for(int i=0;i<q;++i){
        int x; cin >> x;
        cout << upper_bound(s.begin(), s.end(), x) - s.begin() << endl;
    }
}
0