結果

問題 No.854 公平なりんご分配
ユーザー 夜
提出日時 2021-03-26 20:52:37
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,234 bytes
コンパイル時間 892 ms
コンパイル使用メモリ 97,308 KB
実行使用メモリ 139,300 KB
最終ジャッジ日時 2024-11-28 20:49:48
合計ジャッジ時間 164,010 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
12,448 KB
testcase_01 AC 2 ms
13,764 KB
testcase_02 AC 1 ms
13,092 KB
testcase_03 AC 2 ms
13,088 KB
testcase_04 AC 1 ms
11,044 KB
testcase_05 AC 1 ms
11,040 KB
testcase_06 AC 2 ms
13,772 KB
testcase_07 AC 2 ms
11,432 KB
testcase_08 AC 2 ms
10,532 KB
testcase_09 AC 2 ms
10,660 KB
testcase_10 AC 2 ms
13,764 KB
testcase_11 AC 2 ms
13,776 KB
testcase_12 AC 2 ms
10,788 KB
testcase_13 AC 2 ms
13,768 KB
testcase_14 AC 2 ms
12,324 KB
testcase_15 AC 2 ms
12,196 KB
testcase_16 AC 2 ms
13,772 KB
testcase_17 AC 2 ms
10,280 KB
testcase_18 AC 1 ms
13,768 KB
testcase_19 AC 2 ms
10,144 KB
testcase_20 AC 2 ms
10,920 KB
testcase_21 AC 2 ms
10,916 KB
testcase_22 AC 4 ms
10,664 KB
testcase_23 AC 4 ms
10,660 KB
testcase_24 AC 6 ms
10,280 KB
testcase_25 AC 3 ms
10,404 KB
testcase_26 AC 6 ms
13,768 KB
testcase_27 AC 5 ms
13,764 KB
testcase_28 AC 4 ms
13,772 KB
testcase_29 AC 4 ms
13,476 KB
testcase_30 AC 4 ms
13,764 KB
testcase_31 AC 7 ms
13,604 KB
testcase_32 AC 65 ms
35,456 KB
testcase_33 AC 63 ms
22,912 KB
testcase_34 AC 119 ms
45,568 KB
testcase_35 AC 85 ms
37,504 KB
testcase_36 AC 47 ms
13,604 KB
testcase_37 AC 63 ms
36,004 KB
testcase_38 AC 49 ms
30,208 KB
testcase_39 AC 175 ms
49,408 KB
testcase_40 AC 69 ms
19,456 KB
testcase_41 AC 82 ms
30,592 KB
testcase_42 AC 110 ms
47,396 KB
testcase_43 AC 122 ms
33,664 KB
testcase_44 AC 134 ms
42,752 KB
testcase_45 AC 108 ms
17,060 KB
testcase_46 AC 159 ms
44,160 KB
testcase_47 AC 66 ms
29,220 KB
testcase_48 AC 103 ms
39,680 KB
testcase_49 AC 102 ms
46,080 KB
testcase_50 AC 60 ms
36,000 KB
testcase_51 AC 157 ms
45,568 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 576 ms
132,224 KB
testcase_84 AC 573 ms
132,352 KB
testcase_85 AC 600 ms
132,352 KB
testcase_86 TLE -
testcase_87 TLE -
testcase_88 TLE -
testcase_89 TLE -
testcase_90 TLE -
testcase_91 TLE -
testcase_92 AC 591 ms
132,352 KB
testcase_93 AC 583 ms
139,300 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <algorithm>
#include <vector>
#include <iomanip>
#include <cmath>
#include <stdio.h>
#include <queue>
#include <deque>
#include <cstdio>
#include <set>
#include <map>
#include <bitset>
#include <stack>
#include <cctype>
using namespace std;
int sum[100010][330] = {};
vector<int> p;
int main() {
	for (int i = 2; i <= 2000; i++) {
		bool bo = true;
		for (int j = 2; j * j <= i; j++) {
			if (i % j == 0) {
				bo = false;
			}
		}
		if (bo) {
			p.emplace_back(i);
		}
	}
	int n;
	cin >> n;
	for (int i = 1; i <= n; i++) {
		int a;
		cin >> a;
		for (int j = 0; j < p.size(); j++) {
			if (a % p[j] == 0) {
				int co = 0;
				while (a % p[j] == 0) {
					a /= p[j];
					co++;
				}
				sum[i][j] += co;
			}
			sum[i][j] += sum[i - 1][j];
		}
	}
	int q;
	cin >> q;
	for (int i = 0; i < q; i++) {
		int b, l, r;
		cin >> b >> l >> r;
		bool bo = true;
		for (int j = 0; j < p.size(); j++) {
			if (b % p[j] == 0) {
				int co = 0;
				while (b % p[j] == 0) {
					b /= p[j];
					co++;
				}
				if (sum[r][j] - sum[l - 1][j] < co) {
					bo = false;
				}
			}
		}
		if (b != 1) {
			bo = false;
		}
		if (bo) {
			cout << "Yes" << endl;
		}
		else {
			cout << "NO" << endl;
		}
	}
}
0