結果

問題 No.2758 RDQ
ユーザー T101010101T101010101
提出日時 2024-05-17 21:31:12
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 277 ms / 2,000 ms
コード長 2,854 bytes
コンパイル時間 2,287 ms
コンパイル使用メモリ 208,972 KB
実行使用メモリ 28,184 KB
最終ジャッジ日時 2024-05-17 23:43:18
合計ジャッジ時間 6,944 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 197 ms
12,352 KB
testcase_01 AC 4 ms
6,944 KB
testcase_02 AC 3 ms
6,940 KB
testcase_03 AC 3 ms
6,940 KB
testcase_04 AC 3 ms
6,940 KB
testcase_05 AC 3 ms
6,940 KB
testcase_06 AC 204 ms
28,184 KB
testcase_07 AC 204 ms
27,848 KB
testcase_08 AC 204 ms
28,060 KB
testcase_09 AC 206 ms
27,944 KB
testcase_10 AC 213 ms
27,836 KB
testcase_11 AC 277 ms
12,988 KB
testcase_12 AC 261 ms
12,828 KB
testcase_13 AC 256 ms
12,924 KB
testcase_14 AC 252 ms
12,900 KB
testcase_15 AC 264 ms
12,860 KB
testcase_16 AC 249 ms
12,832 KB
testcase_17 AC 253 ms
12,788 KB
testcase_18 AC 260 ms
13,032 KB
testcase_19 AC 249 ms
13,004 KB
testcase_20 AC 252 ms
12,960 KB
testcase_21 AC 3 ms
6,940 KB
testcase_22 AC 2 ms
6,944 KB
testcase_23 AC 3 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

#define ll long long
#define forin(in ,n) for(ll i=0; i<n; i++) cin>>in[i]
#define forout(out) for(ll i=0; i<(ll)out.size(); i++) cout<<out[i]<<endl
#define rep(i, n) for (ll i = 0; i < n; ++i)
#define rep_up(i, a, n) for (ll i = a; i < n; ++i)
#define rep_down(i, a, n) for (ll i = a; i >= n; --i)
#define P pair<ll, ll>

#define all(v) v.begin(), v.end()
#define fi first
#define se second
#define vvvll vector<vector<vector<ll>>>
#define vvll vector<vector<ll>>
#define vll vector<ll>
#define pqll priority_queue<ll>
#define pqllg priority_queue<ll, vector<ll>, greater<ll>>

constexpr ll INF = (1ll << 60);
constexpr ll mod = 1000000007;
//constexpr ll mod = 998244353;
constexpr double pi = 3.14159265358979323846;
template <typename T>
inline bool chmax(T &a, T b) {
    if (a < b) {
        a = b;
        return 1;
    }
    return 0;
}
template <typename T>
inline bool chmin(T &a, T b) {
    if (a > b) {
        a = b;
        return 1;
    }
    return 0;
}
template <typename T>
void pt(T val) {
    cout << val << "\n";
}
template <typename T>
void pt_vll(vector<T> &v) {
    ll vs = v.size();
    rep(i, vs) {
        cout << v[i];

        if (i == vs - 1)
            cout << "\n";
        else
            cout << " ";
    }
}
ll mypow(ll a, ll n) {
    ll ret = 1;
    if(n==0) return 1;
    if(a==0) return 0;
    rep(i, n) {
        if (ret > (ll)(1e18 + 10) / a) return -1;
        ret *= a;
    }
    return ret;
}
long long modpow(long long a, long long n, long long mod) {
    long long res = 1;
    while (n > 0) {
        if (n & 1) res = res * a % mod;
        a = a * a % mod;
        n >>= 1;
    }
    return res;
}
long long modinv(long long a, long long m) {
    long long b = m, u = 1, v = 0;
    while (b) {
        long long t = a / b;
        a -= t * b; swap(a, b);
        u -= t * v; swap(u, v);
    }
    u %= m;
    if (u < 0) u += m;
    return u;
}
ll digsum(ll n) {
    ll res = 0;
    while(n > 0) {
        res += n%10;
        n /= 10;
    }
    return res;
}

vector<ll> enum_div(ll n){    //約数全列挙
    vector<ll> ret;
    for(ll i = 1 ; i*i <= n ; ++i){
        if(n%i == 0){
            ret.push_back(i);
            if(i*i != n){
                ret.push_back(n/i);
            }
        }
    }
    return ret;
}

int main() {
    ll n,m,q,x,l,r,k,ans=1;
    cin>>n;cin>>q;
    vector<ll> a(n);
    vll p;
    vvll st(100001);
    rep(i,n){
        cin>>x;
        a[i]=x;
    }
    rep(i,n){
        p=enum_div(a[i]);
        for(auto e:p){
            st[e].push_back(i);
        }
    }
    
    rep(i,q){
        cin>>l>>r>>x;
        k=upper_bound(all(st[x]),r-1)-lower_bound(all(st[x]),l-1);
        cout<<k<<endl;
    }
}
// https://mojacoder.app/users/heabi/problems/Range-Divisible-Query/submissions/b1998929-3332-4586-83bc-c938ce75b90a
0