結果

問題 No.2758 RDQ
ユーザー テナガザルテナガザル
提出日時 2024-05-17 21:33:44
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 199 ms / 2,000 ms
コード長 649 bytes
コンパイル時間 814 ms
コンパイル使用メモリ 81,764 KB
実行使用メモリ 17,408 KB
最終ジャッジ日時 2024-05-17 23:43:31
合計ジャッジ時間 5,160 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 157 ms
9,684 KB
testcase_01 AC 4 ms
6,944 KB
testcase_02 AC 4 ms
6,940 KB
testcase_03 AC 4 ms
6,940 KB
testcase_04 AC 4 ms
6,944 KB
testcase_05 AC 4 ms
6,944 KB
testcase_06 AC 176 ms
17,408 KB
testcase_07 AC 179 ms
17,316 KB
testcase_08 AC 177 ms
17,376 KB
testcase_09 AC 177 ms
17,408 KB
testcase_10 AC 173 ms
17,144 KB
testcase_11 AC 198 ms
10,112 KB
testcase_12 AC 195 ms
10,112 KB
testcase_13 AC 191 ms
9,984 KB
testcase_14 AC 199 ms
10,112 KB
testcase_15 AC 190 ms
9,984 KB
testcase_16 AC 188 ms
10,112 KB
testcase_17 AC 191 ms
10,112 KB
testcase_18 AC 186 ms
10,240 KB
testcase_19 AC 190 ms
10,112 KB
testcase_20 AC 188 ms
10,112 KB
testcase_21 AC 4 ms
6,940 KB
testcase_22 AC 3 ms
6,944 KB
testcase_23 AC 4 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>

using namespace std;

int main()
{
  int n, q;
  cin >> n >> q;
  vector<int> a(n);
  for (int i = 0; i < n; ++i) cin >> a[i];
  vector<vector<int>> id(1e5 + 1);
  for (int i = 0; i < n; ++i)
  {
    for (int j = 1; j * j <= a[i]; ++j)
    {
      if (a[i] % j) continue;
      int v1 = j, v2 = a[i] / j;
      id[v1].push_back(i);
      if (v1 != v2) id[v2].push_back(i);
    }
  }
  while (q--)
  {
    int l, r, k;
    cin >> l >> r >> k;
    --l, --r;
    int ans = upper_bound(id[k].begin(), id[k].end(), r) - lower_bound(id[k].begin(), id[k].end(), l);
    cout << ans << endl;
  }
}
0