結果

問題 No.854 公平なりんご分配
ユーザー totori_nyaatotori_nyaa
提出日時 2019-08-24 17:07:03
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 301 ms / 3,153 ms
コード長 1,754 bytes
コンパイル時間 1,807 ms
コンパイル使用メモリ 175,428 KB
実行使用メモリ 139,776 KB
最終ジャッジ日時 2024-10-14 12:54:45
合計ジャッジ時間 9,380 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 2 ms
5,248 KB
testcase_13 AC 2 ms
5,248 KB
testcase_14 AC 2 ms
5,248 KB
testcase_15 AC 2 ms
5,248 KB
testcase_16 AC 2 ms
5,248 KB
testcase_17 AC 2 ms
5,248 KB
testcase_18 AC 2 ms
5,248 KB
testcase_19 AC 2 ms
5,248 KB
testcase_20 AC 2 ms
5,248 KB
testcase_21 AC 2 ms
5,248 KB
testcase_22 AC 3 ms
5,248 KB
testcase_23 AC 3 ms
5,248 KB
testcase_24 AC 4 ms
5,248 KB
testcase_25 AC 3 ms
5,248 KB
testcase_26 AC 4 ms
5,248 KB
testcase_27 AC 4 ms
5,248 KB
testcase_28 AC 3 ms
5,248 KB
testcase_29 AC 3 ms
5,248 KB
testcase_30 AC 3 ms
5,248 KB
testcase_31 AC 4 ms
5,248 KB
testcase_32 AC 42 ms
32,128 KB
testcase_33 AC 40 ms
18,760 KB
testcase_34 AC 75 ms
43,008 KB
testcase_35 AC 54 ms
34,560 KB
testcase_36 AC 26 ms
5,248 KB
testcase_37 AC 39 ms
30,336 KB
testcase_38 AC 32 ms
25,088 KB
testcase_39 AC 104 ms
45,568 KB
testcase_40 AC 43 ms
16,428 KB
testcase_41 AC 51 ms
28,288 KB
testcase_42 AC 68 ms
42,368 KB
testcase_43 AC 72 ms
29,312 KB
testcase_44 AC 70 ms
39,296 KB
testcase_45 AC 69 ms
10,368 KB
testcase_46 AC 97 ms
38,912 KB
testcase_47 AC 41 ms
23,040 KB
testcase_48 AC 63 ms
41,728 KB
testcase_49 AC 52 ms
42,496 KB
testcase_50 AC 29 ms
30,208 KB
testcase_51 AC 88 ms
40,832 KB
testcase_52 AC 50 ms
19,608 KB
testcase_53 AC 27 ms
19,328 KB
testcase_54 AC 49 ms
22,528 KB
testcase_55 AC 19 ms
19,424 KB
testcase_56 AC 19 ms
20,224 KB
testcase_57 AC 29 ms
16,896 KB
testcase_58 AC 54 ms
8,832 KB
testcase_59 AC 15 ms
15,104 KB
testcase_60 AC 36 ms
16,880 KB
testcase_61 AC 16 ms
6,016 KB
testcase_62 AC 43 ms
14,812 KB
testcase_63 AC 27 ms
15,544 KB
testcase_64 AC 13 ms
7,808 KB
testcase_65 AC 36 ms
37,504 KB
testcase_66 AC 26 ms
11,904 KB
testcase_67 AC 39 ms
24,960 KB
testcase_68 AC 36 ms
12,672 KB
testcase_69 AC 39 ms
45,584 KB
testcase_70 AC 17 ms
16,724 KB
testcase_71 AC 19 ms
17,836 KB
testcase_72 AC 34 ms
5,504 KB
testcase_73 AC 27 ms
30,592 KB
testcase_74 AC 50 ms
36,992 KB
testcase_75 AC 28 ms
18,068 KB
testcase_76 AC 36 ms
29,440 KB
testcase_77 AC 46 ms
41,600 KB
testcase_78 AC 57 ms
13,696 KB
testcase_79 AC 47 ms
25,856 KB
testcase_80 AC 47 ms
27,008 KB
testcase_81 AC 33 ms
28,288 KB
testcase_82 AC 176 ms
139,776 KB
testcase_83 AC 301 ms
139,776 KB
testcase_84 AC 285 ms
139,744 KB
testcase_85 AC 199 ms
139,136 KB
testcase_86 AC 108 ms
135,936 KB
testcase_87 AC 151 ms
139,724 KB
testcase_88 AC 155 ms
139,776 KB
testcase_89 AC 151 ms
139,776 KB
testcase_90 AC 150 ms
139,688 KB
testcase_91 AC 149 ms
139,648 KB
testcase_92 AC 288 ms
139,776 KB
testcase_93 AC 289 ms
139,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
typedef long long ll;


vector<int> prime;

vector<pair<int,int>> factorize(int p){
    vector<pair<int,int>> ret;
    for(auto i:prime){
        if(i>p) break;
        int cnt=0;
        while(p%i==0){
            p/=i;
            cnt++;
        }
        if(cnt){
            ret.push_back(make_pair(i,cnt));
        }
    }
    return ret;
} 

int sum[100010][333];

signed main(){
    ios::sync_with_stdio(false);
	cin.tie(0);
    cout << fixed << setprecision(20);

    int n;
    cin>>n;
    vector<vector<pair<int,int>>> a(n+1);
    bool check[2222]={};

    int pnum[2222]={};
    int cnt=0;
    
    for(int i=2;i<=2000;i++){
        if(check[i]==0){
            for(int j=i+i;j<=2000;j+=i){
                check[j]=1;
            }
            prime.push_back(i);
            pnum[i] = cnt;
            cnt++; 
        }
    }

    int zero[n+1]={};
    for(int i=1;i<=n;i++){
        int t;
        cin>>t;
        if(t==0){
            zero[i]++;
        }
        zero[i] += zero[i-1];
        a[i] = factorize(t);
        for(auto j:a[i]){
            sum[i][pnum[j.first]]+=j.second;
        }
        for(int j=0;j<333;j++){
            sum[i][j] += sum[i-1][j];
        }
    }

    
    


    int q;
    cin>>q;
    while(q--){
        int p,l,r;
        cin>>p>>l>>r;
        l--;
        if(zero[r]-zero[l]){
            cout<<"Yes\n";
            continue;
        }
        int c[333];
        for(int i=0;i<prime.size();i++){
            c[i] = sum[r][i] - sum[l][i];
            while(c[i] && p%prime[i]==0){
                p/=prime[i];
                c[i]--;
            }
        }
        if(p==1){
            cout<<"Yes\n";
        }
        else cout<<"NO\n";

    }

    
}
0