結果

問題 No.2758 RDQ
ユーザー VvyLwVvyLw
提出日時 2024-05-18 00:02:11
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 489 ms / 2,000 ms
コード長 1,086 bytes
コンパイル時間 1,851 ms
コンパイル使用メモリ 139,600 KB
実行使用メモリ 15,360 KB
最終ジャッジ日時 2024-05-18 00:02:23
合計ジャッジ時間 7,666 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 489 ms
10,652 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 284 ms
15,232 KB
testcase_07 AC 305 ms
15,232 KB
testcase_08 AC 280 ms
15,360 KB
testcase_09 AC 275 ms
15,096 KB
testcase_10 AC 289 ms
14,976 KB
testcase_11 AC 182 ms
11,484 KB
testcase_12 AC 185 ms
11,456 KB
testcase_13 AC 189 ms
11,352 KB
testcase_14 AC 182 ms
11,480 KB
testcase_15 AC 188 ms
11,452 KB
testcase_16 AC 189 ms
11,448 KB
testcase_17 AC 181 ms
11,448 KB
testcase_18 AC 182 ms
11,360 KB
testcase_19 AC 184 ms
11,440 KB
testcase_20 AC 193 ms
11,476 KB
testcase_21 AC 2 ms
6,940 KB
testcase_22 AC 2 ms
6,940 KB
testcase_23 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
#include <unordered_map>
#include <ranges>
std::vector<int> div(const int n) {
    std::vector<int> d;
    for(int64_t i = 1; i * i <= n; ++i) {
        if(n % i == 0) {
            d.emplace_back(i);
            if(i * i != n) {
                d.emplace_back(n / i);
            }
        }
    }
    std::ranges::sort(d);
    return d;
}
int main() {
    std::cin.tie(nullptr) -> sync_with_stdio(false);
    int n, q;
    std::cin >> n >> q;
    std::vector<int> a(n);
    for(auto &el: a) {
        std::cin >> el;
    }
    std::unordered_map<int, std::vector<int>> cnt;
    for(const auto i: std::ranges::iota_view(0, n)) {
        for(const auto d: div(a[i])) {
            cnt[d].emplace_back(i);
        }
    }
    while(q--) {
        int l, r, k;
        std::cin >> l >> r >> k;
        if(!cnt.contains(k)) {
            std::cout << 0 << '\n';
            continue;
        }
        const auto b = cnt[k];
        std::cout << std::ranges::lower_bound(b, r) - std::ranges::lower_bound(b, l - 1) << '\n';
    }
}
0