結果

問題 No.854 公平なりんご分配
ユーザー chocopuuchocopuu
提出日時 2019-07-26 22:48:02
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,919 bytes
コンパイル時間 1,888 ms
コンパイル使用メモリ 181,660 KB
実行使用メモリ 248,388 KB
最終ジャッジ日時 2023-09-15 03:25:46
合計ジャッジ時間 13,755 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
8,760 KB
testcase_01 AC 2 ms
4,380 KB
testcase_02 AC 2 ms
4,380 KB
testcase_03 AC 2 ms
4,380 KB
testcase_04 AC 1 ms
4,376 KB
testcase_05 AC 2 ms
4,376 KB
testcase_06 AC 2 ms
4,376 KB
testcase_07 AC 2 ms
4,380 KB
testcase_08 AC 2 ms
4,384 KB
testcase_09 AC 2 ms
4,380 KB
testcase_10 AC 2 ms
4,380 KB
testcase_11 AC 2 ms
4,376 KB
testcase_12 AC 2 ms
4,376 KB
testcase_13 AC 2 ms
4,380 KB
testcase_14 AC 1 ms
4,380 KB
testcase_15 AC 2 ms
4,380 KB
testcase_16 AC 2 ms
4,380 KB
testcase_17 AC 2 ms
4,380 KB
testcase_18 AC 2 ms
4,376 KB
testcase_19 AC 1 ms
4,376 KB
testcase_20 AC 2 ms
4,376 KB
testcase_21 AC 2 ms
4,380 KB
testcase_22 AC 4 ms
4,380 KB
testcase_23 AC 4 ms
4,816 KB
testcase_24 AC 6 ms
5,904 KB
testcase_25 AC 3 ms
4,780 KB
testcase_26 AC 6 ms
5,824 KB
testcase_27 AC 5 ms
5,744 KB
testcase_28 AC 4 ms
4,384 KB
testcase_29 AC 2 ms
4,380 KB
testcase_30 AC 4 ms
4,452 KB
testcase_31 AC 6 ms
5,504 KB
testcase_32 AC 69 ms
54,024 KB
testcase_33 AC 64 ms
30,924 KB
testcase_34 AC 123 ms
73,648 KB
testcase_35 AC 89 ms
58,580 KB
testcase_36 AC 44 ms
6,752 KB
testcase_37 AC 65 ms
50,804 KB
testcase_38 AC 51 ms
42,028 KB
testcase_39 AC 171 ms
78,172 KB
testcase_40 AC 68 ms
26,548 KB
testcase_41 AC 83 ms
47,592 KB
testcase_42 AC 112 ms
72,368 KB
testcase_43 AC 121 ms
49,664 KB
testcase_44 AC 130 ms
67,432 KB
testcase_45 AC 105 ms
15,972 KB
testcase_46 AC 159 ms
66,456 KB
testcase_47 AC 65 ms
38,376 KB
testcase_48 AC 106 ms
71,280 KB
testcase_49 AC 102 ms
72,776 KB
testcase_50 AC 60 ms
50,672 KB
testcase_51 AC 162 ms
69,812 KB
testcase_52 WA -
testcase_53 WA -
testcase_54 WA -
testcase_55 WA -
testcase_56 WA -
testcase_57 WA -
testcase_58 WA -
testcase_59 WA -
testcase_60 WA -
testcase_61 WA -
testcase_62 WA -
testcase_63 WA -
testcase_64 WA -
testcase_65 WA -
testcase_66 WA -
testcase_67 WA -
testcase_68 WA -
testcase_69 WA -
testcase_70 WA -
testcase_71 WA -
testcase_72 WA -
testcase_73 WA -
testcase_74 WA -
testcase_75 WA -
testcase_76 WA -
testcase_77 WA -
testcase_78 WA -
testcase_79 WA -
testcase_80 WA -
testcase_81 WA -
testcase_82 TLE -
testcase_83 -- -
testcase_84 -- -
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;
#define int long long
#define FOR(i, s, n) for (int i = (s); i < (n); i++)
#define RFOR(i, s, n) for (int i = (n) - 1; i >= (s); i--)
#define REP(i, n) FOR(i, 0, n)
#define RREP(i, n) RFOR(i, 0, n)
#define ALL(a) a.begin(), a.end()
const long long MOD = 1e9+7, INF = 1e18;
template<class T>inline bool CHMAX(T&a,T b){if(a<b){a=b;return true;}return false;}
template<class T>inline bool CHMIN(T&a,T b){if(a>b){a=b;return true;}return false;}

vector<int> P;
void make_primes(int n)
{
	vector<bool> primes;
	n++;
	primes.resize(n, true);
	primes[0] = primes[1] = false;
	FOR(i, 2, sqrt(n)) if (primes[i]) for (int j = 0; i * (j + 2) < n; j++)
		primes[i * (j + 2)] = false;

	FOR(i, 2, n) if (primes[i]) P.push_back(i);
}

vector<pair<long long, long long> > prime_factorize(long long n) {
    //計算量は√N!!!
    vector<pair<long long, long long> > res;
    for (long long p = 2; p * p <= n; ++p) {
        if (n % p != 0) continue;
        int num = 0;
        while (n % p == 0) { ++num; n /= p; }
        res.push_back(make_pair(p, num));
    }
    if (n != 1) res.push_back(make_pair(n, 1));
    return res;
}

signed main(){
	int N;
	cin >> N;
	make_primes(2000);
	vector<int>inv(2000,0);
	REP(i,P.size())inv[P[i]] = i;
	vector<int> a(N); for(auto& e:a)cin >> e;
	vector<vector<int>>cnt(N+1,vector<int>(P.size(),0));
	REP(i,N){
		auto tmp = prime_factorize(a[i]);
		for(auto e:tmp){
			cnt[i+1][inv[e.first]] += e.second;
		}
	}
	REP(i,N)REP(j,P.size())cnt[i+1][j] += cnt[i][j];
	int Q;
	cin >> Q;
	vector<int>ans;
	REP(i,Q){
		int p,l,r;
		cin >> p >> l >> r;
		l--;r--;
		auto tmp = prime_factorize(p);
		int flg = 0;
		for(auto e:tmp){
			if(e.first > 2000){
				flg = 1;
				break;
			}
			if(e.second>cnt[r+1][inv[e.first]]-cnt[l][inv[e.first]])flg = 1;
		}
		ans.push_back(flg);
	}
	for(auto e:ans){
		if(e)cout<<"NO"<<endl;
		else cout<<"Yes"<<endl;
	}
}

0