結果

問題 No.854 公平なりんご分配
ユーザー leaf_1415leaf_1415
提出日時 2019-07-26 22:03:32
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 1,299 bytes
コンパイル時間 700 ms
コンパイル使用メモリ 63,976 KB
実行使用メモリ 154,476 KB
最終ジャッジ日時 2024-07-02 07:18:51
合計ジャッジ時間 28,675 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
6,816 KB
testcase_01 AC 4 ms
6,944 KB
testcase_02 AC 4 ms
6,940 KB
testcase_03 WA -
testcase_04 AC 4 ms
6,944 KB
testcase_05 AC 5 ms
8,680 KB
testcase_06 AC 5 ms
8,680 KB
testcase_07 AC 5 ms
6,940 KB
testcase_08 AC 4 ms
8,548 KB
testcase_09 AC 5 ms
6,944 KB
testcase_10 AC 5 ms
6,944 KB
testcase_11 AC 4 ms
6,944 KB
testcase_12 AC 6 ms
8,812 KB
testcase_13 AC 5 ms
8,680 KB
testcase_14 AC 4 ms
6,940 KB
testcase_15 AC 6 ms
8,696 KB
testcase_16 AC 5 ms
8,864 KB
testcase_17 WA -
testcase_18 AC 5 ms
8,676 KB
testcase_19 AC 5 ms
8,736 KB
testcase_20 AC 5 ms
6,944 KB
testcase_21 AC 5 ms
8,716 KB
testcase_22 WA -
testcase_23 AC 12 ms
19,828 KB
testcase_24 AC 17 ms
24,284 KB
testcase_25 AC 10 ms
17,560 KB
testcase_26 AC 18 ms
28,444 KB
testcase_27 AC 15 ms
26,308 KB
testcase_28 AC 10 ms
13,028 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 149 ms
77,812 KB
testcase_33 WA -
testcase_34 AC 292 ms
94,488 KB
testcase_35 AC 208 ms
84,476 KB
testcase_36 WA -
testcase_37 AC 142 ms
80,224 KB
testcase_38 AC 113 ms
73,524 KB
testcase_39 WA -
testcase_40 AC 166 ms
56,020 KB
testcase_41 AC 201 ms
73,856 KB
testcase_42 AC 254 ms
95,392 KB
testcase_43 AC 306 ms
74,904 KB
testcase_44 WA -
testcase_45 WA -
testcase_46 AC 413 ms
87,552 KB
testcase_47 WA -
testcase_48 AC 237 ms
90,348 KB
testcase_49 AC 224 ms
94,904 KB
testcase_50 AC 131 ms
78,412 KB
testcase_51 AC 409 ms
91,836 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 WA -
testcase_83 AC 872 ms
152,676 KB
testcase_84 AC 864 ms
151,360 KB
testcase_85 AC 893 ms
126,692 KB
testcase_86 AC 833 ms
154,260 KB
testcase_87 WA -
testcase_88 WA -
testcase_89 WA -
testcase_90 WA -
testcase_91 WA -
testcase_92 AC 1,411 ms
152,148 KB
testcase_93 AC 1,418 ms
152,828 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:40:39: warning: use of an operand of type ‘bool’ in ‘operator++’ is deprecated [-Wdeprecated]
   40 |                                 d[i][j]++;
      |                                 ~~~~~~^

ソースコード

diff #

#include <iostream>
#include <string>
#include <vector>
#include <algorithm>
#include <stdio.h>
#include <stdlib.h>
#define llint long long

using namespace std;

llint n, Q;
llint a[100005];
bool d[325][100005];
int sum[325][100005];
int need[325];

bool prime[2005];
vector<llint> pvec;

int main(void)
{
	ios::sync_with_stdio(0);
	cin.tie(0);
	
	for(int i = 2; i < 2005; i++){
		if(prime[i]) continue;
		for(int j = 2*i; j < 2005; j+=i) prime[j] = true;
	}
	for(int i = 2; i < 2005; i++){
		if(!prime[i]) pvec.push_back(i);
	}
	int m = pvec.size();
	
	cin >> n;
	for(int i = 1; i <= n; i++) cin >> a[i];
	for(int i = 0; i < m; i++){
		for(int j = 1; j <= n; j++){
			int t = a[j];
			while(t % pvec[i] == 0){
				d[i][j]++;
				t /= pvec[i];
			}
		}
		for(int j = 1; j <= n; j++){
			sum[i][j] = sum[i][j-1] + d[i][j];
		}
	}
	
	cin >> Q;
	int p, l, r;
	for(int q = 0; q < Q; q++){
		cin >> p >> l >> r;
		
		int t = p;
		for(int i = 0; i < m; i++){
			need[i] = 0;
			while(t % pvec[i] == 0){
				need[i]++;
				t /= pvec[i];
			}
		}
		if(t > 1){
			cout << "NO" << "\n";
			continue;
		}
		
		bool flag = true;
		for(int i = 0; i < m; i++){
			if(need[i] > sum[i][r]-sum[i][l-1]) flag = false;
		}
		if(flag) cout << "Yes" << "\n";
		else cout << "NO" << "\n";
	}
	flush(cout);
	
	return 0;
}
0