結果

問題 No.854 公平なりんご分配
ユーザー kwm_tkwm_t
提出日時 2023-05-01 15:14:13
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 2,343 bytes
コンパイル時間 2,348 ms
コンパイル使用メモリ 210,368 KB
実行使用メモリ 80,112 KB
最終ジャッジ日時 2024-04-30 17:15:16
合計ジャッジ時間 12,986 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,756 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 3 ms
6,940 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 3 ms
6,944 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 2 ms
6,944 KB
testcase_12 AC 3 ms
6,944 KB
testcase_13 AC 3 ms
6,940 KB
testcase_14 AC 3 ms
6,940 KB
testcase_15 AC 2 ms
6,944 KB
testcase_16 AC 2 ms
6,944 KB
testcase_17 AC 3 ms
6,940 KB
testcase_18 AC 3 ms
6,944 KB
testcase_19 AC 3 ms
6,944 KB
testcase_20 AC 2 ms
6,944 KB
testcase_21 AC 3 ms
6,940 KB
testcase_22 AC 6 ms
6,940 KB
testcase_23 AC 7 ms
6,944 KB
testcase_24 AC 11 ms
8,684 KB
testcase_25 AC 5 ms
6,944 KB
testcase_26 AC 11 ms
6,944 KB
testcase_27 AC 8 ms
9,772 KB
testcase_28 AC 6 ms
6,944 KB
testcase_29 AC 4 ms
6,940 KB
testcase_30 AC 6 ms
6,944 KB
testcase_31 AC 10 ms
8,432 KB
testcase_32 AC 104 ms
55,416 KB
testcase_33 AC 96 ms
33,828 KB
testcase_34 AC 186 ms
75,084 KB
testcase_35 AC 134 ms
60,108 KB
testcase_36 AC 70 ms
8,856 KB
testcase_37 AC 99 ms
52,164 KB
testcase_38 AC 79 ms
43,544 KB
testcase_39 AC 259 ms
80,112 KB
testcase_40 AC 104 ms
29,768 KB
testcase_41 AC 126 ms
50,792 KB
testcase_42 AC 168 ms
72,408 KB
testcase_43 AC 176 ms
51,196 KB
testcase_44 AC 196 ms
68,240 KB
testcase_45 AC 161 ms
18,424 KB
testcase_46 AC 238 ms
68,440 KB
testcase_47 AC 99 ms
40,936 KB
testcase_48 AC 157 ms
71,864 KB
testcase_49 AC 152 ms
75,356 KB
testcase_50 AC 93 ms
52,132 KB
testcase_51 AC 239 ms
71,880 KB
testcase_52 TLE -
testcase_53 -- -
testcase_54 -- -
testcase_55 -- -
testcase_56 -- -
testcase_57 -- -
testcase_58 -- -
testcase_59 -- -
testcase_60 -- -
testcase_61 -- -
testcase_62 -- -
testcase_63 -- -
testcase_64 -- -
testcase_65 -- -
testcase_66 -- -
testcase_67 -- -
testcase_68 -- -
testcase_69 -- -
testcase_70 -- -
testcase_71 -- -
testcase_72 -- -
testcase_73 -- -
testcase_74 -- -
testcase_75 -- -
testcase_76 -- -
testcase_77 -- -
testcase_78 -- -
testcase_79 -- -
testcase_80 -- -
testcase_81 -- -
testcase_82 -- -
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>
//#include <atcoder/all>
using namespace std;
//using namespace atcoder;
//using mint = modint1000000007;
//const int mod = 1000000007;
//using mint = modint998244353;
//const int mod = 998244353;
//const int INF = 1e9;
//const long long LINF = 1e18;
#define rep(i, n) for (int i = 0; i < (n); ++i)
#define rep2(i,l,r)for(int i=(l);i<(r);++i)
#define rrep(i, n) for (int i = (n-1); i >= 0; --i)
#define rrep2(i,l,r)for(int i=(r-1);i>=(l);--i)
#define all(x) (x).begin(),(x).end()
#define allR(x) (x).rbegin(),(x).rend()
#define endl "\n"
#define P pair<int,int>
template<typename A, typename B> inline bool chmax(A & a, const B & b) { if (a < b) { a = b; return true; } return false; }
template<typename A, typename B> inline bool chmin(A & a, const B & b) { if (a > b) { a = b; return true; } return false; }
vector<long long> sieve(long long  n = 1000000) {
	vector<bool>p(n + 1, true);
	vector<long long>ret;
	p[0] = false;
	p[1] = false;
	for (int i = 2; i <= n; ++i) {
		if (!p[i]) continue;
		ret.push_back(i);
		for (int j = 2 * i; j <= n; j += i) p[j] = false;
	}
	return ret;
}
// 素因数分解
vector<pair<long long, int>> PrimeFactorization(long long n) {
	vector<pair<long long, int>> ret;
	for (long long i = 2; i*i <= n; i++) {
		int c = 0;
		while (n%i == 0) { // 素数で割り切れなくなるまで割っていく
			c++;//割った個数を配列に足す
			n /= i;
		}
		if (0 != c) ret.push_back({ i,c });
		if (1 == n) break;
	}
	if (1 != n) ret.push_back({ n,1 });
	return ret;
}
int x[100005][303];
int sx[100005][303];
int main() {
	ios::sync_with_stdio(false);
	cin.tie(nullptr);
	int n; cin >> n;
	auto plist = sieve(2000);
	rep(i, n) {
		int a; cin >> a;
		rep(j, plist.size()) {
			int cnt = 0;
			while (0 == a % plist[j]) {
				cnt++;
				a /= plist[j];
			}
			x[i][j] = cnt;
		}
	}
	rep(i, n) rep(j, 303)sx[i + 1][j] = sx[i][j] + x[i][j];
	int q; cin >> q;
	while (q--) {
		int p, l, r; cin >> p >> l >> r;
		l--, r--;
		vector<int>cnt(303);
		rep(i, plist.size()) {
			while (0 == p % plist[i]) {
				cnt[i]++;
				p /= plist[i];
			}
		}
		if (1 != p) {
			cout << "NO" << endl;
			continue;
		}
		bool chk = true;
		rep(i, 303) {
			int x = sx[r + 1][i] - sx[l][i];
			if (x < cnt[i])chk = false;
		}
		if(chk)cout << "Yes" << endl;
		else cout << "NO" << endl;
	}
	return 0;
}
0