結果

問題 No.2758 RDQ
ユーザー maeshunmaeshun
提出日時 2024-05-19 12:02:43
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 193 ms / 2,000 ms
コード長 1,110 bytes
コンパイル時間 4,400 ms
コンパイル使用メモリ 264,188 KB
実行使用メモリ 17,152 KB
最終ジャッジ日時 2024-05-19 12:02:53
合計ジャッジ時間 9,019 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
9,600 KB
testcase_01 AC 3 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 3 ms
6,944 KB
testcase_04 AC 3 ms
6,940 KB
testcase_05 AC 3 ms
6,940 KB
testcase_06 AC 178 ms
17,152 KB
testcase_07 AC 154 ms
17,024 KB
testcase_08 AC 155 ms
17,152 KB
testcase_09 AC 157 ms
17,132 KB
testcase_10 AC 158 ms
17,024 KB
testcase_11 AC 165 ms
9,984 KB
testcase_12 AC 176 ms
9,928 KB
testcase_13 AC 171 ms
9,984 KB
testcase_14 AC 167 ms
9,856 KB
testcase_15 AC 168 ms
9,960 KB
testcase_16 AC 164 ms
9,856 KB
testcase_17 AC 170 ms
9,856 KB
testcase_18 AC 164 ms
10,112 KB
testcase_19 AC 193 ms
9,856 KB
testcase_20 AC 166 ms
9,908 KB
testcase_21 AC 3 ms
6,940 KB
testcase_22 AC 3 ms
6,940 KB
testcase_23 AC 3 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
#define rep(i, n) for(int i=0;i<(n);++i)
#define rep1(i, n) for(int i=1;i<=(n);i++)
#define ll long long
using mint = modint998244353;
using P = pair<ll,ll>;
using lb = long double;
using T = tuple<ll, ll, ll>;
#ifdef LOCAL
#  include <debug_print.hpp>
#  define dbg(...) debug_print::multi_print(#__VA_ARGS__, __VA_ARGS__)
#else
#  define dbg(...) (static_cast<void>(0))
#endif

int main()
{
    int n, q;
    cin >> n >> q;
    vector<vector<int>> idx(1e5+1);
    rep(i,n) {
        int a;
        cin >> a;
        for(int j=1;j*j<=a;j++){
            if(a%j==0) {
                idx[j].push_back(i);
                if(j!=a/j) idx[a/j].push_back(i);
            }
        }
    }
    for(int i=0;i<10;i++)dbg(idx[i]);
    while(q--) {
        int l, r, k;
        cin >> l >> r >> k;
        --l;
        int it = lower_bound(idx[k].begin(),idx[k].end(), l) - idx[k].begin();
        int it2 = lower_bound(idx[k].begin(),idx[k].end(), r) - idx[k].begin();
        cout << it2 - it << endl;
    }
    return 0;
}
0