結果

問題 No.2758 RDQ
ユーザー Today03Today03
提出日時 2024-05-17 23:32:33
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 309 ms / 2,000 ms
コード長 760 bytes
コンパイル時間 2,618 ms
コンパイル使用メモリ 212,640 KB
実行使用メモリ 14,976 KB
最終ジャッジ日時 2024-05-17 23:46:29
合計ジャッジ時間 7,806 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 205 ms
11,264 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 1 ms
6,944 KB
testcase_04 AC 2 ms
6,948 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 245 ms
14,976 KB
testcase_07 AC 241 ms
14,976 KB
testcase_08 AC 242 ms
14,972 KB
testcase_09 AC 245 ms
14,848 KB
testcase_10 AC 242 ms
14,720 KB
testcase_11 AC 300 ms
12,416 KB
testcase_12 AC 295 ms
12,416 KB
testcase_13 AC 309 ms
12,416 KB
testcase_14 AC 299 ms
12,416 KB
testcase_15 AC 298 ms
12,416 KB
testcase_16 AC 304 ms
12,416 KB
testcase_17 AC 300 ms
12,416 KB
testcase_18 AC 296 ms
12,416 KB
testcase_19 AC 294 ms
12,416 KB
testcase_20 AC 301 ms
12,416 KB
testcase_21 AC 3 ms
6,940 KB
testcase_22 AC 2 ms
6,940 KB
testcase_23 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
const int INF = 1e9 + 10;
const ll INFL = 4e18;

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>> mp;
    for (int i = 0; i < N; i++) {
        for (int j = 1; j * j <= A[i]; j++) {
            if (A[i] % j == 0) {
                mp[j].push_back(i);
                if (j * j != A[i]) {
                    mp[A[i] / j].push_back(i);
                }
            }
        }
    }

    while (Q--) {
        int L, R, K;
        cin >> L >> R >> K;
        L--;

        cout << lower_bound(mp[K].begin(), mp[K].end(), R) - lower_bound(mp[K].begin(), mp[K].end(), L) << '\n';
    }
}
0