結果

問題 No.854 公平なりんご分配
ユーザー CuriousFairy315CuriousFairy315
提出日時 2019-02-22 15:48:18
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,592 bytes
コンパイル時間 712 ms
コンパイル使用メモリ 72,584 KB
実行使用メモリ 128,768 KB
最終ジャッジ日時 2024-11-25 10:06:11
合計ジャッジ時間 165,622 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
13,644 KB
testcase_01 AC 3 ms
13,472 KB
testcase_02 AC 4 ms
13,760 KB
testcase_03 AC 4 ms
13,988 KB
testcase_04 AC 4 ms
13,764 KB
testcase_05 AC 4 ms
11,940 KB
testcase_06 AC 4 ms
12,576 KB
testcase_07 AC 5 ms
14,672 KB
testcase_08 AC 4 ms
11,808 KB
testcase_09 AC 4 ms
11,680 KB
testcase_10 AC 4 ms
13,768 KB
testcase_11 AC 4 ms
17,444 KB
testcase_12 AC 3 ms
13,764 KB
testcase_13 AC 4 ms
11,940 KB
testcase_14 AC 4 ms
13,768 KB
testcase_15 AC 4 ms
17,264 KB
testcase_16 AC 4 ms
13,764 KB
testcase_17 AC 4 ms
14,880 KB
testcase_18 AC 4 ms
13,764 KB
testcase_19 AC 3 ms
11,428 KB
testcase_20 AC 4 ms
13,764 KB
testcase_21 AC 3 ms
11,940 KB
testcase_22 AC 6 ms
11,812 KB
testcase_23 AC 6 ms
11,940 KB
testcase_24 AC 8 ms
13,772 KB
testcase_25 AC 5 ms
6,820 KB
testcase_26 AC 8 ms
13,764 KB
testcase_27 AC 7 ms
31,264 KB
testcase_28 AC 7 ms
15,524 KB
testcase_29 AC 5 ms
13,768 KB
testcase_30 AC 6 ms
13,768 KB
testcase_31 AC 8 ms
13,768 KB
testcase_32 AC 78 ms
36,900 KB
testcase_33 AC 100 ms
24,064 KB
testcase_34 AC 195 ms
46,372 KB
testcase_35 AC 132 ms
37,760 KB
testcase_36 AC 55 ms
15,356 KB
testcase_37 AC 85 ms
35,712 KB
testcase_38 AC 59 ms
30,884 KB
testcase_39 AC 346 ms
48,640 KB
testcase_40 AC 114 ms
23,204 KB
testcase_41 AC 149 ms
35,404 KB
testcase_42 AC 197 ms
45,856 KB
testcase_43 AC 233 ms
33,920 KB
testcase_44 AC 239 ms
42,752 KB
testcase_45 AC 157 ms
16,896 KB
testcase_46 AC 333 ms
42,788 KB
testcase_47 AC 99 ms
29,952 KB
testcase_48 AC 173 ms
44,672 KB
testcase_49 AC 137 ms
45,440 KB
testcase_50 AC 71 ms
34,980 KB
testcase_51 AC 327 ms
48,640 KB
testcase_52 TLE -
testcase_53 TLE -
testcase_54 TLE -
testcase_55 TLE -
testcase_56 TLE -
testcase_57 TLE -
testcase_58 TLE -
testcase_59 TLE -
testcase_60 TLE -
testcase_61 TLE -
testcase_62 TLE -
testcase_63 TLE -
testcase_64 TLE -
testcase_65 TLE -
testcase_66 TLE -
testcase_67 TLE -
testcase_68 TLE -
testcase_69 TLE -
testcase_70 TLE -
testcase_71 TLE -
testcase_72 TLE -
testcase_73 TLE -
testcase_74 TLE -
testcase_75 TLE -
testcase_76 TLE -
testcase_77 TLE -
testcase_78 TLE -
testcase_79 TLE -
testcase_80 TLE -
testcase_81 TLE -
testcase_82 TLE -
testcase_83 AC 545 ms
122,624 KB
testcase_84 AC 600 ms
122,624 KB
testcase_85 AC 590 ms
122,496 KB
testcase_86 TLE -
testcase_87 TLE -
testcase_88 TLE -
testcase_89 TLE -
testcase_90 TLE -
testcase_91 TLE -
testcase_92 AC 1,395 ms
122,752 KB
testcase_93 AC 1,455 ms
128,768 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<bitset>
using namespace std; // 575

const int MAX = 100001;
const int MAX2 = 2001;
const int PRIME = 303; // 2000までの素数

const string ERROR = "No Judge";
int main() {
	static int N, A[MAX], Q, P, L, R;
	cin >> N;
	if (!(1 <= N && N <= 100000)) {
		cout << ERROR << endl;
		return 0;
	}
	for (int i = 0;i < N;++ i) {
		cin >> A[i];
		if (!(0 <= A[i] && A[i] <= 2000)) {
			cout << ERROR << endl;
			return 0;
		}
	}
	static int prime[PRIME], sum[PRIME][MAX], sumZero[MAX];
	bitset<MAX2> sieve; // エラトステネスの篩
	for (int i = 2, j = 0;i < MAX2;++ i) {
		if (!sieve[i]) {
			prime[j++] = i;
			for (int k = i;k < MAX2;k += i) sieve[k] = true;
		}
	}
	for (int i = 0;i < PRIME;++ i) sum[0][i] = 0;
	sumZero[0] = 0;
	for (int i = 0;i < N;++ i) { // 累積和
		sumZero[i + 1] = sumZero[i] + (A[i] == 0 ? 1 : 0);
		for (int j = 0;j < PRIME;++ j) for (sum[j][i + 1] = sum[j][i];A[i] % prime[j] == 0;++ sum[j][i + 1], A[i] /= prime[j]);
	}
	// ここまでで前準備終わり、次に各クエリの処理
	cin >> Q;
	if (!(1 <= Q && Q <= 100000)) {
		cout << ERROR << endl;
		return 0;
	}
	while (Q-- > 0) {
		cin >> P >> L >> R;
		bool isDiv = sumZero[R] - sumZero[L - 1] == 0; // 割り切れるかフラグ
		for (int i = 0;i < PRIME;++ i) {
			int factor = 0;
			while (P % prime[i] == 0) {
				P /= prime[i];
				++ factor;
			}
			isDiv &= sum[i][R] - sum[i][L - 1] >= factor;
		}
		if (1 <= P && P <= 1000000000 && 1 <= L && L <= R && R <= N) cout << (isDiv && P == 1 ? "Yes" : "NO") << endl;
		else cout << ERROR << endl;
	}
	return 0;
}
0