結果

問題 No.2758 RDQ
ユーザー tobbietobbie
提出日時 2024-07-07 23:15:05
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 969 bytes
コンパイル時間 1,599 ms
コンパイル使用メモリ 181,224 KB
実行使用メモリ 29,952 KB
最終ジャッジ日時 2024-07-07 23:15:20
合計ジャッジ時間 13,241 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 1 ms
6,944 KB
testcase_06 AC 654 ms
29,568 KB
testcase_07 AC 633 ms
29,952 KB
testcase_08 AC 644 ms
29,952 KB
testcase_09 AC 622 ms
29,696 KB
testcase_10 AC 645 ms
29,568 KB
testcase_11 AC 268 ms
17,792 KB
testcase_12 AC 266 ms
17,792 KB
testcase_13 AC 300 ms
17,920 KB
testcase_14 AC 270 ms
17,792 KB
testcase_15 AC 266 ms
17,792 KB
testcase_16 AC 270 ms
17,792 KB
testcase_17 AC 290 ms
17,920 KB
testcase_18 AC 273 ms
17,792 KB
testcase_19 AC 267 ms
17,792 KB
testcase_20 AC 268 ms
17,920 KB
testcase_21 AC 2 ms
6,944 KB
testcase_22 AC 2 ms
6,944 KB
testcase_23 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

#define rep(i, n) for (int i = 0; i < (int)n; i++)

struct LR {
  int l;
  int r;
  LR() {}
  LR(int l, int r) : l(l), r(r) {}
  bool operator==(const LR& rhs) const {
    return (l == rhs.l && r == rhs.r);
  }
};

int main() {
  int N, Q;
  cin >> N >> Q;
  vector<int> A(N);
  rep(i, N) {
    cin >> A[i];
  }
  vector<int> ki(Q);
  vector<LR> lri(Q);
  rep(i, Q) {
    int L, R, K;
    cin >> L >> R >> K;
    L--; R--;
    lri[i] = LR(L, R);
    ki[i] = K;
  }
  map<int, vector<int>> mp;
  vector<vector<int>> div(N);
  rep(i, N) {
    for (int j = 1; j*j <= A[i]; j++) {
      if (A[i] % j == 0) {
	div[i].push_back(j);
	if (j*j != A[i])
	  div[i].push_back(A[i]/j);
      }
    }
  }
  rep(i, N) {
    for (int j : div[i]) {
      mp[j].push_back(i);
    }
  }
  rep(i, Q) {
    int n = 0;
    for (int j : mp[ki[i]]) {
      if (j >= lri[i].l && j <= lri[i].r)
	n++;
    }
    cout << n << endl;
  }
  return 0;
}
0