結果

問題 No.2758 RDQ
ユーザー T101010101T101010101
提出日時 2024-05-17 21:27:35
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,520 bytes
コンパイル時間 4,272 ms
コンパイル使用メモリ 263,692 KB
実行使用メモリ 14,720 KB
最終ジャッジ日時 2024-05-17 21:27:44
合計ジャッジ時間 8,175 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,812 KB
testcase_01 AC 3 ms
6,816 KB
testcase_02 AC 3 ms
6,940 KB
testcase_03 AC 3 ms
6,940 KB
testcase_04 AC 4 ms
6,940 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 3 ms
6,940 KB
testcase_21 AC 3 ms
6,940 KB
testcase_22 AC 3 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

// https://mojacoder.app/users/heabi/problems/Range-Divisible-Query/submissions/76cb8e16-92b7-4557-9a5c-0adf5bdb8beb
#include<bits/stdc++.h>
#include<atcoder/all>
using namespace std;
using namespace atcoder;
#define rep(i,n)for (int i = 0; i < int(n); ++i)
#define rrep(i,n)for (int i = int(n)-1; i >= 0; --i)
#define all(x) (x).begin(), (x).end()
#define rall(x) (x).rbegin(), (x).rend()
template<class T> void chmax(T& a, const T& b) {a = max(a, b);}
template<class T> void chmin(T& a, const T& b) {a = min(a, b);}
using ll = long long;
using P = pair<int,int>;
using VI = vector<int>;
using VVI = vector<VI>;
using VL = vector<ll>;
using VVL = vector<VL>;

constexpr int B = 710, MX = B * B;

int main() {
    ios::sync_with_stdio(false);
    cin.tie(0);
    int n;
    cin >> n;
    int q;
    cin >> q;
    VI a(n);
    rep(i, n) cin >> a[i];
    VI pos(MX, -1);
    rep(i, n) pos[a[i]] = i;
    VVI multiples(B);
    rep(i, n) for(int d = 1; d < B; d++) if (a[i] % d == 0) multiples[d].push_back(i);
    
    while(q--) {
        int x, l, r;
        cin >> l >> r>>x;
        l--;
        if (x >= B) {
            int cnt = 0;
            for(int i = x; i < MX; i += x) {
                int p = pos[i];
                cnt += l <= p && p < r;
            }
            cout << cnt << '\n';
        } else {
            auto it_l = lower_bound(all(multiples[x]), l);
            auto it_r = lower_bound(all(multiples[x]), r);
            int cnt = it_r - it_l;
            cout << cnt << '\n';
        }
    }
}
0