結果

問題 No.2758 RDQ
ユーザー kekenxkekenx
提出日時 2024-05-26 00:08:52
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 416 ms / 2,000 ms
コード長 808 bytes
コンパイル時間 1,209 ms
コンパイル使用メモリ 93,596 KB
実行使用メモリ 14,848 KB
最終ジャッジ日時 2024-05-26 00:09:02
合計ジャッジ時間 9,880 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 238 ms
11,136 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,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 289 ms
14,720 KB
testcase_07 AC 292 ms
14,848 KB
testcase_08 AC 287 ms
14,720 KB
testcase_09 AC 283 ms
14,720 KB
testcase_10 AC 285 ms
14,592 KB
testcase_11 AC 415 ms
12,288 KB
testcase_12 AC 382 ms
12,288 KB
testcase_13 AC 385 ms
12,288 KB
testcase_14 AC 411 ms
12,360 KB
testcase_15 AC 378 ms
12,416 KB
testcase_16 AC 377 ms
12,160 KB
testcase_17 AC 416 ms
12,416 KB
testcase_18 AC 392 ms
12,288 KB
testcase_19 AC 376 ms
12,416 KB
testcase_20 AC 414 ms
12,288 KB
testcase_21 AC 2 ms
6,944 KB
testcase_22 AC 2 ms
6,944 KB
testcase_23 AC 2 ms
6,948 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cassert>
#include <vector>
#include <map>
#include <algorithm>

using namespace std;

int main() {
  int N, Q; cin >> N >> Q;
  map<int, vector<int>> mp;

  for (int i = 0; i < N; i++) {
    int a; cin >> a;
    for (int j = 1; j * j <= a; j++) {
      if (a % j == 0) {
	mp[j].push_back(i);

	if (a / j != j) {
	  mp[a / j].push_back(i);
	}
      }
    }
  }

  while (Q--) {
    int l, r, k;
    cin >> l >> r >> k;
    l--; r--;
    int lidx = lower_bound(mp[k].begin(), mp[k].end(), l) - mp[k].begin();
    if (lidx == mp[k].size()) {
      cout << 0 << endl;
      continue;
    }
    int ridx = lower_bound(mp[k].begin(), mp[k].end(), r) - mp[k].begin();
    if (ridx == mp[k].size() || mp[k][ridx] > r) ridx--;
    cout << ridx - lidx + 1 << endl;
  }
   
  return 0;
}

0