結果

問題 No.2758 RDQ
ユーザー InTheBloomInTheBloom
提出日時 2024-05-18 16:22:51
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 318 ms / 2,000 ms
コード長 920 bytes
コンパイル時間 2,168 ms
コンパイル使用メモリ 118,484 KB
実行使用メモリ 15,232 KB
最終ジャッジ日時 2024-05-18 16:23:00
合計ジャッジ時間 9,078 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 224 ms
11,392 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 260 ms
15,104 KB
testcase_07 AC 248 ms
14,976 KB
testcase_08 AC 246 ms
15,232 KB
testcase_09 AC 247 ms
14,848 KB
testcase_10 AC 260 ms
14,720 KB
testcase_11 AC 296 ms
12,416 KB
testcase_12 AC 292 ms
12,544 KB
testcase_13 AC 299 ms
12,436 KB
testcase_14 AC 301 ms
12,416 KB
testcase_15 AC 300 ms
12,416 KB
testcase_16 AC 290 ms
12,404 KB
testcase_17 AC 318 ms
12,416 KB
testcase_18 AC 287 ms
12,544 KB
testcase_19 AC 294 ms
12,460 KB
testcase_20 AC 300 ms
12,416 KB
testcase_21 AC 2 ms
6,944 KB
testcase_22 AC 1 ms
6,940 KB
testcase_23 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <map>
#include <algorithm>

using namespace std;

vector<int> divisors (int N) {
    vector<int> res;
    for (int i = 1; 1LL * i * i <= N; i++) {
        if (0 < (N % i)) continue;
        res.push_back(i);
        if (1LL * i * i == N) continue;
        res.push_back(N / i);
    }
    sort(res.begin(), res.end());
    return res;
}

int main () {
    int N, Q; cin >> N >> Q;
    vector<int> A(N);
    for (int i = 0; i < N; i++) cin >> A[i];

    map<int, vector<int>> acc;

    for (int i = 0; i < N; i++) {
        for (auto d : divisors(A[i])) {
            acc[d].push_back(i);
        }
    }

    for (int i = 0; i < Q; i++) {
        int L, R, K; cin >> L >> R >> K;
        L--, R--;
        auto lit = lower_bound(acc[K].begin(), acc[K].end(), L);
        auto rit = upper_bound(acc[K].begin(), acc[K].end(), R);

        cout << (rit - lit) << "\n";
    }
}
0