結果

問題 No.2758 RDQ
ユーザー tobbietobbie
提出日時 2024-07-07 23:24:17
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 314 ms / 2,000 ms
コード長 1,069 bytes
コンパイル時間 1,916 ms
コンパイル使用メモリ 181,532 KB
実行使用メモリ 29,948 KB
最終ジャッジ日時 2024-07-07 23:24:48
合計ジャッジ時間 7,484 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 203 ms
16,384 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 1 ms
6,944 KB
testcase_06 AC 274 ms
29,696 KB
testcase_07 AC 266 ms
29,948 KB
testcase_08 AC 265 ms
29,824 KB
testcase_09 AC 293 ms
29,824 KB
testcase_10 AC 264 ms
29,568 KB
testcase_11 AC 290 ms
17,792 KB
testcase_12 AC 287 ms
17,792 KB
testcase_13 AC 289 ms
17,792 KB
testcase_14 AC 287 ms
17,792 KB
testcase_15 AC 293 ms
17,792 KB
testcase_16 AC 290 ms
17,664 KB
testcase_17 AC 314 ms
17,792 KB
testcase_18 AC 290 ms
17,788 KB
testcase_19 AC 297 ms
17,792 KB
testcase_20 AC 295 ms
17,792 KB
testcase_21 AC 2 ms
6,940 KB
testcase_22 AC 2 ms
6,940 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 = lower_bound(mp[ki[i]].begin(),
			mp[ki[i]].end(),
			lri[i].l) - mp[ki[i]].begin();
    int m = upper_bound(mp[ki[i]].begin(),
			mp[ki[i]].end(),
			lri[i].r) - mp[ki[i]].begin();;
    cout << m - n << endl;
  }
  return 0;
}
0