結果

問題 No.2758 RDQ
ユーザー pitPpitP
提出日時 2024-05-17 22:13:57
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 217 ms / 2,000 ms
コード長 1,240 bytes
コンパイル時間 3,149 ms
コンパイル使用メモリ 251,932 KB
実行使用メモリ 76,136 KB
最終ジャッジ日時 2024-05-17 23:45:24
合計ジャッジ時間 7,035 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 187 ms
76,136 KB
testcase_01 AC 4 ms
6,944 KB
testcase_02 AC 3 ms
6,944 KB
testcase_03 AC 3 ms
6,944 KB
testcase_04 AC 3 ms
6,944 KB
testcase_05 AC 3 ms
6,940 KB
testcase_06 AC 205 ms
74,852 KB
testcase_07 AC 210 ms
74,856 KB
testcase_08 AC 217 ms
74,860 KB
testcase_09 AC 214 ms
74,856 KB
testcase_10 AC 208 ms
74,856 KB
testcase_11 AC 205 ms
75,752 KB
testcase_12 AC 204 ms
75,880 KB
testcase_13 AC 203 ms
75,880 KB
testcase_14 AC 205 ms
75,856 KB
testcase_15 AC 200 ms
75,880 KB
testcase_16 AC 199 ms
75,880 KB
testcase_17 AC 202 ms
75,872 KB
testcase_18 AC 201 ms
75,880 KB
testcase_19 AC 198 ms
75,880 KB
testcase_20 AC 198 ms
75,876 KB
testcase_21 AC 3 ms
6,948 KB
testcase_22 AC 2 ms
6,940 KB
testcase_23 AC 4 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

typedef long long ll;
#define FOR(i,l,r) for (int i = l;i < (int)(r); i++)
#define rep(i,n) for (int i = 0;i < (int)(n); i++)
#define all(x) x.begin(), x.end()

#ifdef LOCAL
#  include <debug_print.hpp>
#  define debug(...) debug_print::multi_print(#__VA_ARGS__, __VA_ARGS__)
#else
#  define debug(...) (static_cast<void>(0))
#endif

int main(){
    cin.tie(0);
    ios_base::sync_with_stdio(false);

    const int B = 350;
    const int M = 101010;

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

    vector cnt(B + 1, vector<int>(N + 1));
    FOR(v, 1, B + 1)rep(i, N){
        cnt[v][i + 1] = cnt[v][i];
        if((A[i] % v) == 0) cnt[v][i + 1]++;
    }

    vector<vector<int>> indices(M);
    rep(i, N)indices[A[i]].push_back(i);

    while(Q--){
        int L, R, K; cin >> L >> R >> K;
        L--;
        if(K <= B){
            cout << cnt[K][R] - cnt[K][L] << endl;
        }
        else{
            ll ans = 0;
            int v = K;
            while(v < M){
                ans += (int)(lower_bound(all(indices[v]), R) - lower_bound(all(indices[v]), L));
                v += K;
            }
            cout << ans << endl;
        }
    }
}
0