結果

問題 No.854 公平なりんご分配
ユーザー ahe100ahe100
提出日時 2019-07-26 22:54:09
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,532 bytes
コンパイル時間 1,516 ms
コンパイル使用メモリ 171,540 KB
実行使用メモリ 126,976 KB
最終ジャッジ日時 2024-07-02 08:51:05
合計ジャッジ時間 19,207 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
11,392 KB
testcase_01 AC 9 ms
5,760 KB
testcase_02 AC 9 ms
5,888 KB
testcase_03 AC 9 ms
5,760 KB
testcase_04 AC 10 ms
5,888 KB
testcase_05 AC 10 ms
5,760 KB
testcase_06 AC 9 ms
5,760 KB
testcase_07 AC 9 ms
5,888 KB
testcase_08 AC 8 ms
5,888 KB
testcase_09 AC 8 ms
5,888 KB
testcase_10 AC 8 ms
5,760 KB
testcase_11 AC 8 ms
5,888 KB
testcase_12 AC 9 ms
6,016 KB
testcase_13 AC 8 ms
6,016 KB
testcase_14 AC 8 ms
5,760 KB
testcase_15 AC 8 ms
5,888 KB
testcase_16 AC 8 ms
6,016 KB
testcase_17 AC 8 ms
5,888 KB
testcase_18 AC 9 ms
5,888 KB
testcase_19 AC 8 ms
6,016 KB
testcase_20 AC 9 ms
6,016 KB
testcase_21 AC 9 ms
5,888 KB
testcase_22 AC 14 ms
6,016 KB
testcase_23 AC 11 ms
6,528 KB
testcase_24 AC 17 ms
7,040 KB
testcase_25 AC 12 ms
6,400 KB
testcase_26 AC 17 ms
7,040 KB
testcase_27 AC 14 ms
7,040 KB
testcase_28 AC 14 ms
6,144 KB
testcase_29 AC 10 ms
6,272 KB
testcase_30 AC 12 ms
6,272 KB
testcase_31 AC 17 ms
6,912 KB
testcase_32 AC 88 ms
31,232 KB
testcase_33 AC 202 ms
19,584 KB
testcase_34 AC 335 ms
41,088 KB
testcase_35 AC 212 ms
33,536 KB
testcase_36 AC 160 ms
7,808 KB
testcase_37 AC 90 ms
29,696 KB
testcase_38 AC 57 ms
25,216 KB
testcase_39 AC 646 ms
43,264 KB
testcase_40 AC 240 ms
17,536 KB
testcase_41 AC 236 ms
28,032 KB
testcase_42 AC 256 ms
40,320 KB
testcase_43 AC 467 ms
29,184 KB
testcase_44 AC 429 ms
38,016 KB
testcase_45 AC 441 ms
12,288 KB
testcase_46 AC 655 ms
37,632 KB
testcase_47 AC 162 ms
23,424 KB
testcase_48 AC 214 ms
39,808 KB
testcase_49 AC 176 ms
40,576 KB
testcase_50 AC 64 ms
29,568 KB
testcase_51 AC 610 ms
39,168 KB
testcase_52 AC 263 ms
20,480 KB
testcase_53 AC 93 ms
20,096 KB
testcase_54 AC 256 ms
23,296 KB
testcase_55 AC 44 ms
20,096 KB
testcase_56 AC 41 ms
20,864 KB
testcase_57 AC 126 ms
18,048 KB
testcase_58 AC 326 ms
11,136 KB
testcase_59 AC 41 ms
16,384 KB
testcase_60 AC 176 ms
18,176 KB
testcase_61 AC 82 ms
8,192 KB
testcase_62 AC 242 ms
16,256 KB
testcase_63 AC 106 ms
16,768 KB
testcase_64 AC 56 ms
9,984 KB
testcase_65 AC 86 ms
36,096 KB
testcase_66 AC 115 ms
13,568 KB
testcase_67 AC 157 ms
25,344 KB
testcase_68 AC 183 ms
14,208 KB
testcase_69 AC 36 ms
43,008 KB
testcase_70 AC 41 ms
17,664 KB
testcase_71 AC 47 ms
18,688 KB
testcase_72 AC 191 ms
8,064 KB
testcase_73 AC 45 ms
30,080 KB
testcase_74 AC 184 ms
35,840 KB
testcase_75 AC 121 ms
19,072 KB
testcase_76 AC 102 ms
29,184 KB
testcase_77 AC 98 ms
39,808 KB
testcase_78 AC 325 ms
15,360 KB
testcase_79 AC 214 ms
26,112 KB
testcase_80 AC 207 ms
27,264 KB
testcase_81 AC 90 ms
28,160 KB
testcase_82 AC 267 ms
126,848 KB
testcase_83 AC 651 ms
126,976 KB
testcase_84 TLE -
testcase_85 -- -
testcase_86 -- -
testcase_87 -- -
testcase_88 -- -
testcase_89 -- -
testcase_90 -- -
testcase_91 -- -
testcase_92 -- -
testcase_93 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
#define rep(i,n) for(int i = 0;i<((int)(n));i++)
#define reg(i,a,b) for(int i = ((int)(a));i<=((int)(b));i++)
#define irep(i,n) for(int i = ((int)(n)-1);i>=0;i--)
#define ireg(i,a,b) for(int i = ((int)(b));i>=((int)(a));i--)

/*
何故かエラー出る
	解決。配列範囲には気をつけよう
*/

int n,m,a[100010],q,p[100010];
int l[100010],r[100010],fact[2010][305],dp[100010][305],zero[100010];
vector<ll> prime;

void prime_list(ll n,vector<ll>& prime_){
	ll visited[2010]={};
	reg(i,2,n){
		if(visited[i]==0){
			prime_.push_back(i);
			reg(j,2,n){
				if(j*i>n)break;
				visited[i*j]=1;
			}
		}
	}
}
ll modpow(__int128_t a, ll n,ll mo) {
	__int128_t r=1;
	while(n) r=r*((n%2)?a:1)%mo,a=a*a%mo,n>>=1;
	return r;
}

void init(){
	cin>>n;
	reg(i,1,n)cin>>a[i];
	cin>>q;
	rep(i,q)cin>>p[i]>>l[i]>>r[i];
	prime_list(2000,prime);
	m = prime.size();
	rep(j,m)fact[0][j]=0;
	reg(i,1,2000){
		ll t = i;
		rep(j,m){
			fact[i][j]=0;
			while(t%prime[j]==0){
				t/=prime[j];
				fact[i][j]++;
			}
		}
	}
	// 12ms
	zero[0]=0;
	rep(j,m)dp[0][j]=0;
	for(int i=1;i<=n;++i){
		zero[i]=zero[i-1];
		if(a[i]==0)zero[i]++;
		for(int j=0;j<m;++j)dp[i][j] = dp[i-1][j] + fact[a[i]][j];
	}
}

int main(void){
	init();
	for(int i=0;i<q;++i){
		ll tmp=1;
		if(zero[r[i]]-zero[l[i]-1]>0)tmp=0;
		for(int j=0;j<m;++j){
			if(tmp==0)break;
			tmp *= modpow(prime[j], dp[r[i]][j] - dp[l[i]-1][j], p[i]);
			tmp %= p[i];
		}
		cout<<(tmp==0?"Yes":"NO")<<endl;
	}
	return 0;
}
0