結果

問題 No.2758 RDQ
ユーザー twooimp2twooimp2
提出日時 2024-05-26 13:18:01
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 471 ms / 2,000 ms
コード長 741 bytes
コンパイル時間 2,522 ms
コンパイル使用メモリ 215,772 KB
実行使用メモリ 25,908 KB
最終ジャッジ日時 2024-05-26 13:18:13
合計ジャッジ時間 11,214 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 294 ms
13,848 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,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 362 ms
25,600 KB
testcase_07 AC 340 ms
25,680 KB
testcase_08 AC 332 ms
25,908 KB
testcase_09 AC 366 ms
25,300 KB
testcase_10 AC 335 ms
25,392 KB
testcase_11 AC 438 ms
15,376 KB
testcase_12 AC 471 ms
15,248 KB
testcase_13 AC 442 ms
15,448 KB
testcase_14 AC 443 ms
15,328 KB
testcase_15 AC 470 ms
15,140 KB
testcase_16 AC 445 ms
15,244 KB
testcase_17 AC 442 ms
15,180 KB
testcase_18 AC 456 ms
15,300 KB
testcase_19 AC 446 ms
15,260 KB
testcase_20 AC 459 ms
15,220 KB
testcase_21 AC 2 ms
6,944 KB
testcase_22 AC 2 ms
6,940 KB
testcase_23 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

int main(){
  ll n,q;
  cin>>n>>q;
  vector<ll> a(n);
  for(ll i=0;i<n;i++){
    cin>>a[i];
  }
  map<ll,vector<ll>> mp;
  for(ll i=0;i<n;i++){
    vector<ll> d=calc_divisors(a[i]);
    for(ll j:d){
      mp[j].push_back(i);
    }
  }
  while(q--){
    ll l,r,k;
    cin>>l>>r>>k;
    l--;
    r--;
    ll cnt=upper_bound(mp[k].begin(),mp[k].end(),r)-lower_bound(mp[k].begin(),mp[k].end(),l);
    cout<<cnt<<endl;
  }
}
0