結果

問題 No.2758 RDQ
ユーザー matcharate12matcharate12
提出日時 2024-05-05 13:06:24
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 362 ms / 2,000 ms
コード長 861 bytes
コンパイル時間 1,286 ms
コンパイル使用メモリ 86,432 KB
実行使用メモリ 15,104 KB
最終ジャッジ日時 2024-05-17 23:41:53
合計ジャッジ時間 7,822 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 248 ms
11,136 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 1 ms
6,940 KB
testcase_06 AC 292 ms
15,104 KB
testcase_07 AC 294 ms
14,976 KB
testcase_08 AC 290 ms
15,100 KB
testcase_09 AC 284 ms
15,104 KB
testcase_10 AC 285 ms
14,848 KB
testcase_11 AC 354 ms
12,416 KB
testcase_12 AC 356 ms
12,416 KB
testcase_13 AC 362 ms
12,416 KB
testcase_14 AC 349 ms
12,416 KB
testcase_15 AC 356 ms
12,412 KB
testcase_16 AC 359 ms
12,416 KB
testcase_17 AC 351 ms
12,416 KB
testcase_18 AC 362 ms
12,416 KB
testcase_19 AC 356 ms
12,416 KB
testcase_20 AC 359 ms
12,416 KB
testcase_21 AC 2 ms
6,940 KB
testcase_22 AC 2 ms
6,944 KB
testcase_23 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <vector>
#include <map>
#define rep(i,n) for(ll i = 0; i < n; i++) //[0,n)
#define all(A) (A).begin(),(A).end()
using namespace std;
using ll = long long;
template <class T>
int siz(T& a){return (int)a.size();}

vector<int> divisors(int x){
    vector<int> res;
    for(ll i = 1; i*i <= x; i++){
        if(x%i != 0) continue;
        res.push_back(i);
        if(x/i != i) res.push_back(x/i);
    }
    return res;
}

int main(){
    int N,Q; cin >> N >> Q;
    vector<int> A(N); rep(i,N) cin >> A[i];

    map<int,vector<int>> mp;
    rep(i,N){
        auto D = divisors(A[i]);
        for(int r : D) mp[r].push_back(i);
    }

    rep(i,Q){
        int L,R,K; cin >> L >> R >> K;
        L--; R--;
        auto cnt = upper_bound(all(mp[K]),R)-lower_bound(all(mp[K]),L);
        cout << cnt << endl;
    }
}

0