結果

問題 No.2758 RDQ
ユーザー GOTKAKOGOTKAKO
提出日時 2024-05-17 21:33:38
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 103 ms / 2,000 ms
コード長 681 bytes
コンパイル時間 2,079 ms
コンパイル使用メモリ 204,688 KB
実行使用メモリ 17,152 KB
最終ジャッジ日時 2024-05-17 23:43:32
合計ジャッジ時間 4,835 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 65 ms
9,344 KB
testcase_01 AC 3 ms
6,940 KB
testcase_02 AC 4 ms
6,944 KB
testcase_03 AC 3 ms
6,944 KB
testcase_04 AC 3 ms
6,944 KB
testcase_05 AC 4 ms
6,940 KB
testcase_06 AC 74 ms
17,024 KB
testcase_07 AC 77 ms
17,024 KB
testcase_08 AC 75 ms
17,152 KB
testcase_09 AC 76 ms
17,024 KB
testcase_10 AC 76 ms
16,892 KB
testcase_11 AC 102 ms
9,856 KB
testcase_12 AC 103 ms
9,856 KB
testcase_13 AC 96 ms
9,984 KB
testcase_14 AC 93 ms
9,856 KB
testcase_15 AC 96 ms
9,856 KB
testcase_16 AC 97 ms
9,856 KB
testcase_17 AC 100 ms
9,852 KB
testcase_18 AC 98 ms
9,996 KB
testcase_19 AC 97 ms
9,856 KB
testcase_20 AC 97 ms
9,856 KB
testcase_21 AC 4 ms
6,940 KB
testcase_22 AC 4 ms
6,944 KB
testcase_23 AC 4 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main() {
    ios_base::sync_with_stdio(false);
    cin.tie(nullptr);

    int N,Q; cin >> N >> Q;
    vector<vector<int>> ap(100001);
    for(int i=0; i<N; i++){
        int a; cin >> a;
        for(int k=1; k*k<=a; k++){
            if(a%k) continue;
            ap.at(k).push_back(i);
            if(k*k != a) ap.at(a/k).push_back(i);
        }
    }

    while(Q--){
        int l,r,k; cin >> l >> r >> k; l--; r--;
        int posl = lower_bound(ap.at(k).begin(),ap.at(k).end(),l)-ap.at(k).begin();
        int posr = upper_bound(ap.at(k).begin(),ap.at(k).end(),r)-ap.at(k).begin();
        cout << posr-posl << "\n";
    }

}
0