結果

問題 No.854 公平なりんご分配
ユーザー maspymaspy
提出日時 2020-03-18 15:06:34
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 1,551 bytes
コンパイル時間 1,318 ms
コンパイル使用メモリ 159,736 KB
実行使用メモリ 13,768 KB
最終ジャッジ日時 2024-12-14 01:59:55
合計ジャッジ時間 161,761 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,532 KB
testcase_01 AC 1 ms
10,272 KB
testcase_02 AC 2 ms
13,636 KB
testcase_03 AC 2 ms
10,144 KB
testcase_04 AC 2 ms
10,404 KB
testcase_05 AC 2 ms
13,764 KB
testcase_06 AC 2 ms
10,148 KB
testcase_07 AC 2 ms
10,020 KB
testcase_08 AC 1 ms
13,768 KB
testcase_09 AC 1 ms
10,020 KB
testcase_10 AC 1 ms
10,148 KB
testcase_11 AC 2 ms
10,276 KB
testcase_12 AC 2 ms
13,764 KB
testcase_13 AC 1 ms
10,400 KB
testcase_14 AC 1 ms
10,020 KB
testcase_15 AC 2 ms
10,020 KB
testcase_16 AC 2 ms
10,400 KB
testcase_17 AC 2 ms
6,816 KB
testcase_18 AC 2 ms
10,272 KB
testcase_19 AC 1 ms
10,272 KB
testcase_20 AC 2 ms
13,764 KB
testcase_21 AC 2 ms
10,404 KB
testcase_22 AC 4 ms
10,404 KB
testcase_23 AC 3 ms
10,148 KB
testcase_24 AC 4 ms
13,764 KB
testcase_25 AC 2 ms
10,148 KB
testcase_26 AC 5 ms
10,144 KB
testcase_27 AC 4 ms
10,144 KB
testcase_28 AC 3 ms
10,276 KB
testcase_29 AC 2 ms
10,272 KB
testcase_30 AC 3 ms
10,400 KB
testcase_31 AC 4 ms
10,404 KB
testcase_32 AC 37 ms
10,404 KB
testcase_33 AC 39 ms
10,276 KB
testcase_34 AC 72 ms
10,020 KB
testcase_35 AC 51 ms
10,152 KB
testcase_36 AC 34 ms
10,144 KB
testcase_37 AC 35 ms
10,020 KB
testcase_38 AC 28 ms
10,152 KB
testcase_39 AC 105 ms
10,152 KB
testcase_40 AC 44 ms
12,016 KB
testcase_41 AC 49 ms
10,276 KB
testcase_42 AC 63 ms
10,148 KB
testcase_43 AC 72 ms
10,148 KB
testcase_44 AC 79 ms
13,764 KB
testcase_45 AC 75 ms
10,400 KB
testcase_46 AC 98 ms
10,276 KB
testcase_47 AC 39 ms
10,148 KB
testcase_48 AC 58 ms
10,276 KB
testcase_49 AC 56 ms
10,272 KB
testcase_50 AC 32 ms
13,764 KB
testcase_51 AC 97 ms
10,400 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 346 ms
6,816 KB
testcase_84 AC 344 ms
6,816 KB
testcase_85 AC 378 ms
6,820 KB
testcase_86 TLE -
testcase_87 TLE -
testcase_88 TLE -
testcase_89 TLE -
testcase_90 TLE -
testcase_91 TLE -
testcase_92 AC 347 ms
6,816 KB
testcase_93 AC 347 ms
11,556 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

#define U 100010
int A[U];
int P[U];
int L[U];
int R[U];
int ord_A[U];
bool is_prime[2010];
bool ok[U];

int main()
{
    int N;
    cin >> N;
    for (int i = 0; i < N; i++)
    {
        cin >> A[i];
    }
    int Q;
    cin >> Q;
    for (int i = 0; i < Q; i++)
    {
        ok[i] = true;
        cin >> P[i];
        cin >> L[i];
        cin >> R[i];
    }
    is_prime[2] = 1;
    for (int i = 3; i < 2010; i += 2)
    {
        is_prime[i] = 1;
    }
    for (int p = 3; p * p < 2010; p += 2)
    {
        if (is_prime[p])
        {
            for (int i = p * p; i < 2010; i += p)
            {
                is_prime[i] = 0;
            }
        }
    }
    for (int p = 2; p < 2010; p++)
    {
        if (!is_prime[p])
            continue;
        for (int i = 0; i < N; i++)
        {
            int e = 0;
            while (A[i] % p == 0)
            {
                A[i] /= p;
                e++;
            }
            ord_A[i + 1] = ord_A[i] + e;
        }
        for (int i = 0; i < Q; i++)
        {
            int e = 0;
            while (P[i] % p == 0)
            {
                P[i] /= p;
                e++;
            }
            int f = ord_A[R[i]] - ord_A[L[i] - 1];
            if (f < e)
            {
                ok[i] = false;
            }
        }
    }
    for (int i = 0; i < Q; i++)
    {
        if (ok[i] and P[i] == 1)
        {
            cout << "Yes\n";
        }
        else
        {
            cout << "NO\n";
        }
    }
}
0