結果

問題 No.854 公平なりんご分配
ユーザー face4face4
提出日時 2019-07-27 01:07:29
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,363 ms / 3,153 ms
コード長 1,512 bytes
コンパイル時間 704 ms
コンパイル使用メモリ 73,860 KB
実行使用メモリ 123,088 KB
最終ジャッジ日時 2024-07-02 10:22:08
合計ジャッジ時間 13,796 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 1 ms
6,944 KB
testcase_05 AC 1 ms
6,944 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 2 ms
6,944 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 2 ms
6,940 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 AC 2 ms
6,944 KB
testcase_17 AC 2 ms
6,940 KB
testcase_18 AC 1 ms
6,940 KB
testcase_19 AC 2 ms
6,940 KB
testcase_20 AC 2 ms
6,940 KB
testcase_21 AC 2 ms
6,944 KB
testcase_22 AC 4 ms
6,944 KB
testcase_23 AC 4 ms
6,944 KB
testcase_24 AC 5 ms
6,944 KB
testcase_25 AC 3 ms
6,944 KB
testcase_26 AC 5 ms
6,944 KB
testcase_27 AC 4 ms
6,940 KB
testcase_28 AC 3 ms
6,940 KB
testcase_29 AC 3 ms
6,944 KB
testcase_30 AC 3 ms
6,940 KB
testcase_31 AC 5 ms
6,940 KB
testcase_32 AC 69 ms
28,672 KB
testcase_33 AC 73 ms
17,024 KB
testcase_34 AC 186 ms
38,400 KB
testcase_35 AC 115 ms
30,848 KB
testcase_36 AC 29 ms
6,940 KB
testcase_37 AC 68 ms
27,008 KB
testcase_38 AC 47 ms
22,784 KB
testcase_39 AC 316 ms
40,448 KB
testcase_40 AC 78 ms
15,104 KB
testcase_41 AC 113 ms
25,472 KB
testcase_42 AC 150 ms
37,632 KB
testcase_43 AC 198 ms
26,368 KB
testcase_44 AC 224 ms
35,072 KB
testcase_45 AC 86 ms
9,472 KB
testcase_46 AC 290 ms
34,816 KB
testcase_47 AC 78 ms
20,864 KB
testcase_48 AC 134 ms
37,120 KB
testcase_49 AC 128 ms
38,016 KB
testcase_50 AC 58 ms
27,008 KB
testcase_51 AC 292 ms
36,480 KB
testcase_52 AC 110 ms
17,664 KB
testcase_53 AC 51 ms
17,408 KB
testcase_54 AC 112 ms
20,480 KB
testcase_55 AC 35 ms
17,664 KB
testcase_56 AC 35 ms
18,432 KB
testcase_57 AC 56 ms
15,488 KB
testcase_58 AC 64 ms
8,320 KB
testcase_59 AC 28 ms
13,824 KB
testcase_60 AC 70 ms
15,488 KB
testcase_61 AC 19 ms
6,944 KB
testcase_62 AC 75 ms
13,568 KB
testcase_63 AC 42 ms
14,080 KB
testcase_64 AC 16 ms
7,552 KB
testcase_65 AC 77 ms
33,408 KB
testcase_66 AC 38 ms
11,008 KB
testcase_67 AC 88 ms
22,528 KB
testcase_68 AC 57 ms
11,520 KB
testcase_69 AC 70 ms
40,576 KB
testcase_70 AC 30 ms
15,232 KB
testcase_71 AC 34 ms
16,384 KB
testcase_72 AC 39 ms
6,940 KB
testcase_73 AC 54 ms
27,520 KB
testcase_74 AC 123 ms
32,896 KB
testcase_75 AC 59 ms
16,384 KB
testcase_76 AC 75 ms
26,368 KB
testcase_77 AC 93 ms
36,992 KB
testcase_78 AC 90 ms
12,544 KB
testcase_79 AC 116 ms
23,168 KB
testcase_80 AC 117 ms
24,320 KB
testcase_81 AC 69 ms
25,344 KB
testcase_82 AC 248 ms
122,960 KB
testcase_83 AC 405 ms
123,088 KB
testcase_84 AC 399 ms
122,840 KB
testcase_85 AC 406 ms
122,840 KB
testcase_86 AC 174 ms
122,840 KB
testcase_87 AC 243 ms
122,960 KB
testcase_88 AC 240 ms
122,832 KB
testcase_89 AC 239 ms
122,968 KB
testcase_90 AC 243 ms
122,772 KB
testcase_91 AC 242 ms
122,840 KB
testcase_92 AC 1,363 ms
122,964 KB
testcase_93 AC 1,357 ms
122,708 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
using namespace std;
typedef long long ll;

int main(){
    bool nonp[2000] = {};
    vector<int> p;
    for(int i = 2; i < 2000; i++){
        if(nonp[i]) continue;
        p.push_back(i);
        for(int j = i+i; j < 2000; j += i)  nonp[j] = true;
    }
    int pnum = p.size();

    int n;
    scanf("%d", &n);

    vector<int> a(n);
    for(int i = 0; i < n; i++)  scanf("%d", a.begin()+i);

    vector<vector<int>> sum(pnum, vector<int>(n, 0));
    for(int i = 0; i < pnum; i++){
        for(int j = 0; j < n; j++){
            if(a[j]){
                int tmp = a[j];
                while(tmp%p[i] == 0)    tmp /= p[i], sum[i][j]++;
            }
            if(j)   sum[i][j] += sum[i][j-1];
        }
    }

    vector<int> fuck(n, 0); fuck[0] = (a[0] == 0);
    for(int i = 1; i < n; i++)  fuck[i] = (fuck[i-1] + (a[i]==0));

    int q;
    scanf("%d", &q);

    while(q-- > 0){
        int x, l, r;
        scanf("%d %d %d", &x, &l, &r);
        l--, r--;
        
        if(fuck[r]-(l==0 ? 0 : fuck[l-1])){
            printf("Yes\n");
            continue;
        }

        bool ok = true;
        int tmp = x;
        for(int i = 0; i < pnum; i++){
            int need = 0;
            while(tmp%p[i]==0)  tmp /= p[i], need++;
            int exist = sum[i][r] - (l==0 ? 0 : sum[i][l-1]);
            if(need > exist)    ok = false;
        }
        ok &= (tmp == 1);

        if(ok)  printf("Yes\n");
        else    printf("NO\n");
    }

    return 0;
}
0