結果

問題 No.1093 区間の和 / Sum of Range
ユーザー 🍮かんプリン🍮かんプリン
提出日時 2020-06-26 00:21:19
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 209 ms / 2,000 ms
コード長 639 bytes
コンパイル時間 1,267 ms
コンパイル使用メモリ 163,284 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-03 22:03:30
合計ジャッジ時間 6,445 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 107 ms
5,376 KB
testcase_02 AC 49 ms
5,376 KB
testcase_03 AC 31 ms
5,376 KB
testcase_04 AC 29 ms
5,376 KB
testcase_05 AC 156 ms
5,376 KB
testcase_06 AC 33 ms
5,376 KB
testcase_07 AC 88 ms
5,376 KB
testcase_08 AC 74 ms
5,376 KB
testcase_09 AC 140 ms
5,376 KB
testcase_10 AC 77 ms
5,376 KB
testcase_11 AC 127 ms
5,376 KB
testcase_12 AC 75 ms
5,376 KB
testcase_13 AC 3 ms
5,376 KB
testcase_14 AC 137 ms
5,376 KB
testcase_15 AC 36 ms
5,376 KB
testcase_16 AC 166 ms
5,376 KB
testcase_17 AC 136 ms
5,376 KB
testcase_18 AC 91 ms
5,376 KB
testcase_19 AC 11 ms
5,376 KB
testcase_20 AC 74 ms
5,376 KB
testcase_21 AC 170 ms
5,376 KB
testcase_22 AC 156 ms
5,376 KB
testcase_23 AC 116 ms
5,376 KB
testcase_24 AC 35 ms
5,376 KB
testcase_25 AC 141 ms
5,376 KB
testcase_26 AC 103 ms
5,376 KB
testcase_27 AC 150 ms
5,376 KB
testcase_28 AC 103 ms
5,376 KB
testcase_29 AC 209 ms
5,376 KB
testcase_30 AC 25 ms
5,376 KB
testcase_31 AC 34 ms
5,376 KB
testcase_32 AC 55 ms
5,376 KB
testcase_33 AC 158 ms
5,376 KB
testcase_34 AC 12 ms
5,376 KB
testcase_35 AC 165 ms
5,376 KB
testcase_36 AC 145 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/**
 *   @FileName	a.cpp
 *   @Author	kanpurin
 *   @Created	2020.06.26 00:21:15
**/

#include "bits/stdc++.h" 
using namespace std; 
typedef long long ll;

int main() {
    int n,k;cin >> n >> k;
    vector<int> a(n);
    vector<int> s;
    int total = 0;
    for (int i = 0; i < n; i++) {
        cin >> a[i];
        total += a[i];
        if (i >= k-1) {
            s.push_back(total);
            total -= a[i-k+1];
        }
    }
    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;
    }
    return 0;
}
0