結果

問題 No.2758 RDQ
ユーザー 沙耶花沙耶花
提出日時 2024-05-17 21:26:04
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 277 ms / 2,000 ms
コード長 988 bytes
コンパイル時間 4,693 ms
コンパイル使用メモリ 264,988 KB
実行使用メモリ 8,192 KB
最終ジャッジ日時 2024-05-17 23:42:40
合計ジャッジ時間 10,197 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 231 ms
8,192 KB
testcase_01 AC 4 ms
6,944 KB
testcase_02 AC 4 ms
6,944 KB
testcase_03 AC 3 ms
6,940 KB
testcase_04 AC 4 ms
6,940 KB
testcase_05 AC 3 ms
6,940 KB
testcase_06 AC 277 ms
6,944 KB
testcase_07 AC 276 ms
6,940 KB
testcase_08 AC 275 ms
6,944 KB
testcase_09 AC 277 ms
6,940 KB
testcase_10 AC 275 ms
6,940 KB
testcase_11 AC 261 ms
7,936 KB
testcase_12 AC 259 ms
7,848 KB
testcase_13 AC 259 ms
7,936 KB
testcase_14 AC 257 ms
7,936 KB
testcase_15 AC 257 ms
7,936 KB
testcase_16 AC 262 ms
7,936 KB
testcase_17 AC 260 ms
7,936 KB
testcase_18 AC 264 ms
7,808 KB
testcase_19 AC 259 ms
7,884 KB
testcase_20 AC 258 ms
7,908 KB
testcase_21 AC 3 ms
6,944 KB
testcase_22 AC 3 ms
6,940 KB
testcase_23 AC 3 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <bits/stdc++.h>
#include <atcoder/all>
using namespace atcoder;
using mint = modint998244353;
using namespace std;
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define Inf32 1000000001
#define Inf64 1000000000000000001

int main(){
   
	int N,Q;
	cin>>N>>Q;
	vector<int> a(N);
	rep(i,N)cin>>a[i];
	int B = 600;
	vector<int> l(Q),r(Q),k(Q);
	rep(i,Q)cin>>l[i]>>r[i]>>k[i];
	vector<int> ans(Q);
	for(int i=1;i<=B;i++){
		vector<int> s(N+1);
		rep(j,N){
			if(a[j]%i==0)s[j+1] = 1;
			s[j+1] += s[j];
		}
		rep(j,Q){
			if(k[j]==i){
				ans[j] = s[r[j]]-s[l[j]-1];
			}
		}
	}
	
	vector<vector<int>> pos(100001);
	rep(i,N)pos[a[i]].push_back(i+1);
	
	rep(i,Q){
		if(k[i]>B){
			for(int j=k[i];j<=100000;j+=k[i]){
				int lpos = lower_bound(pos[j].begin(),pos[j].end(),l[i])-pos[j].begin();
				int rpos = upper_bound(pos[j].begin(),pos[j].end(),r[i])-pos[j].begin();
				ans[i] += rpos-lpos;
			}
			
		}
	}
	rep(i,Q){
		cout<<ans[i]<<endl;
	}
   
	return 0;
}
0