結果

問題 No.2758 RDQ
ユーザー eve__fuyukieve__fuyuki
提出日時 2024-05-17 21:26:12
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 95 ms / 2,000 ms
コード長 827 bytes
コンパイル時間 2,274 ms
コンパイル使用メモリ 205,920 KB
実行使用メモリ 17,364 KB
最終ジャッジ日時 2024-05-17 23:42:43
合計ジャッジ時間 4,887 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 63 ms
9,728 KB
testcase_01 AC 4 ms
6,940 KB
testcase_02 AC 4 ms
6,944 KB
testcase_03 AC 4 ms
6,944 KB
testcase_04 AC 4 ms
6,940 KB
testcase_05 AC 4 ms
6,940 KB
testcase_06 AC 77 ms
17,276 KB
testcase_07 AC 75 ms
17,148 KB
testcase_08 AC 75 ms
17,364 KB
testcase_09 AC 75 ms
17,152 KB
testcase_10 AC 75 ms
17,148 KB
testcase_11 AC 95 ms
10,112 KB
testcase_12 AC 94 ms
10,112 KB
testcase_13 AC 94 ms
10,240 KB
testcase_14 AC 90 ms
10,240 KB
testcase_15 AC 92 ms
10,112 KB
testcase_16 AC 91 ms
10,112 KB
testcase_17 AC 92 ms
10,112 KB
testcase_18 AC 92 ms
10,112 KB
testcase_19 AC 92 ms
10,112 KB
testcase_20 AC 89 ms
10,112 KB
testcase_21 AC 4 ms
6,944 KB
testcase_22 AC 4 ms
6,940 KB
testcase_23 AC 3 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;
void fast_io() {
    ios::sync_with_stdio(false);
    std::cin.tie(nullptr);
}

int main() {
    fast_io();
    int n, q;
    cin >> n >> q;
    const int M = 1e5;
    vector<int> a(n);
    vector<vector<int>> idx(M + 1);
    for (int i = 0; i < n; i++) {
        cin >> a[i];
        for (int j = 1; j * j <= a[i]; j++) {
            if (a[i] % j == 0) {
                idx[j].push_back(i);
                if (j * j != a[i]) {
                    idx[a[i] / j].push_back(i);
                }
            }
        }
    }
    for (; q--;) {
        int l, r, k;
        cin >> l >> r >> k;
        l--;
        auto lb = lower_bound(idx[k].begin(), idx[k].end(), l);
        auto ub = upper_bound(idx[k].begin(), idx[k].end(), r - 1);
        cout << ub - lb << "\n";
    }
}
0