結果

問題 No.2758 RDQ
ユーザー srjywrdnprktsrjywrdnprkt
提出日時 2024-10-21 18:01:14
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 269 ms / 2,000 ms
コード長 663 bytes
コンパイル時間 2,895 ms
コンパイル使用メモリ 205,352 KB
実行使用メモリ 43,512 KB
最終ジャッジ日時 2024-10-21 18:01:25
合計ジャッジ時間 10,854 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 231 ms
27,180 KB
testcase_01 AC 100 ms
21,504 KB
testcase_02 AC 85 ms
21,504 KB
testcase_03 AC 98 ms
21,632 KB
testcase_04 AC 93 ms
21,504 KB
testcase_05 AC 92 ms
21,376 KB
testcase_06 AC 269 ms
43,496 KB
testcase_07 AC 248 ms
43,380 KB
testcase_08 AC 247 ms
43,512 KB
testcase_09 AC 253 ms
43,176 KB
testcase_10 AC 242 ms
43,268 KB
testcase_11 AC 240 ms
27,712 KB
testcase_12 AC 218 ms
27,540 KB
testcase_13 AC 253 ms
27,768 KB
testcase_14 AC 257 ms
27,620 KB
testcase_15 AC 258 ms
27,592 KB
testcase_16 AC 225 ms
27,692 KB
testcase_17 AC 256 ms
27,644 KB
testcase_18 AC 266 ms
27,752 KB
testcase_19 AC 238 ms
27,752 KB
testcase_20 AC 237 ms
27,680 KB
testcase_21 AC 117 ms
21,632 KB
testcase_22 AC 91 ms
21,420 KB
testcase_23 AC 101 ms
21,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;
using ll = long long;

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

    ll N, Q, A;
    cin >> N >> Q;
    vector<vector<ll>> fac(1e5+1), v(1e5+1);
    for (int i=1; i<=1e5; i++){
        for (int j=i; j<=1e5; j+=i){
            fac[j].push_back(i);
        }
    }

    for (int i=1; i<=N; i++){
        cin >> A;
        for (auto x : fac[A]){
            v[x].push_back(i);
        }
    }

    while(Q--){
        ll L, R, K;
        cin >> L >> R >> K;
        cout << upper_bound(v[K].begin(), v[K].end(), R)-lower_bound(v[K].begin(), v[K].end(), L) << endl;
    }

    return 0;
}
0