結果

問題 No.2758 RDQ
ユーザー t98slidert98slider
提出日時 2024-05-17 21:27:14
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 102 ms / 2,000 ms
コード長 904 bytes
コンパイル時間 1,794 ms
コンパイル使用メモリ 204,892 KB
実行使用メモリ 27,516 KB
最終ジャッジ日時 2024-05-17 23:42:43
合計ジャッジ時間 4,847 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 78 ms
19,196 KB
testcase_01 AC 49 ms
16,000 KB
testcase_02 AC 48 ms
15,872 KB
testcase_03 AC 46 ms
15,984 KB
testcase_04 AC 47 ms
16,008 KB
testcase_05 AC 46 ms
15,988 KB
testcase_06 AC 94 ms
27,264 KB
testcase_07 AC 99 ms
27,516 KB
testcase_08 AC 102 ms
27,428 KB
testcase_09 AC 98 ms
27,264 KB
testcase_10 AC 97 ms
27,392 KB
testcase_11 AC 90 ms
19,584 KB
testcase_12 AC 93 ms
19,584 KB
testcase_13 AC 93 ms
19,584 KB
testcase_14 AC 96 ms
19,712 KB
testcase_15 AC 94 ms
19,584 KB
testcase_16 AC 95 ms
19,532 KB
testcase_17 AC 94 ms
19,584 KB
testcase_18 AC 93 ms
19,664 KB
testcase_19 AC 95 ms
19,708 KB
testcase_20 AC 96 ms
19,584 KB
testcase_21 AC 50 ms
16,128 KB
testcase_22 AC 47 ms
15,932 KB
testcase_23 AC 45 ms
15,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;

template<class T> istream& operator >> (istream& is, vector<T>& vec) {
    for(T& x : vec) is >> x;
    return is;
}

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    int n, q;
    cin >> n >> q;
    const int m = 100000;
    vector<vector<int>> tb(m + 1);
    vector<vector<int>> S(m + 1);
    for(int i = 1; i <= m; i++){
        for(int j = i; j <= m; j += i){
            tb[j].emplace_back(i);
        }
    }
    for(int i = 0; i < n; i++){
        int v;
        cin >> v;
        for(auto &&v2 : tb[v]){
            S[v2].emplace_back(i);
        }
    }
    while(q--){
        int l, r, v;
        cin >> l >> r >> v;
        l--;
        l = lower_bound(S[v].begin(), S[v].end(), l) - tb[v].begin();
        r = lower_bound(S[v].begin(), S[v].end(), r) - tb[v].begin();
        cout << r - l << '\n';
    }
}
0