結果

問題 No.854 公平なりんご分配
ユーザー MayimgMayimg
提出日時 2019-07-27 04:11:24
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 521 ms / 3,153 ms
コード長 1,491 bytes
コンパイル時間 2,407 ms
コンパイル使用メモリ 209,596 KB
実行使用メモリ 243,496 KB
最終ジャッジ日時 2024-07-02 10:37:46
合計ジャッジ時間 13,276 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 1 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 1 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 4 ms
5,376 KB
testcase_23 AC 4 ms
5,376 KB
testcase_24 AC 5 ms
5,760 KB
testcase_25 AC 4 ms
5,376 KB
testcase_26 AC 6 ms
5,888 KB
testcase_27 AC 6 ms
5,760 KB
testcase_28 AC 3 ms
5,376 KB
testcase_29 AC 3 ms
5,376 KB
testcase_30 AC 4 ms
5,376 KB
testcase_31 AC 5 ms
5,504 KB
testcase_32 AC 75 ms
54,016 KB
testcase_33 AC 55 ms
30,488 KB
testcase_34 AC 121 ms
73,472 KB
testcase_35 AC 92 ms
58,240 KB
testcase_36 AC 27 ms
6,784 KB
testcase_37 AC 73 ms
50,944 KB
testcase_38 AC 57 ms
41,856 KB
testcase_39 AC 155 ms
77,696 KB
testcase_40 AC 54 ms
26,584 KB
testcase_41 AC 84 ms
47,360 KB
testcase_42 AC 117 ms
72,192 KB
testcase_43 AC 105 ms
49,280 KB
testcase_44 AC 124 ms
66,944 KB
testcase_45 AC 65 ms
15,744 KB
testcase_46 AC 141 ms
66,048 KB
testcase_47 AC 62 ms
38,144 KB
testcase_48 AC 112 ms
71,040 KB
testcase_49 AC 112 ms
72,448 KB
testcase_50 AC 70 ms
50,464 KB
testcase_51 AC 143 ms
69,504 KB
testcase_52 AC 69 ms
32,000 KB
testcase_53 AC 51 ms
31,488 KB
testcase_54 AC 73 ms
37,376 KB
testcase_55 AC 41 ms
31,544 KB
testcase_56 AC 43 ms
33,220 KB
testcase_57 AC 46 ms
27,328 KB
testcase_58 AC 54 ms
13,184 KB
testcase_59 AC 31 ms
24,252 KB
testcase_60 AC 53 ms
27,352 KB
testcase_61 AC 19 ms
7,936 KB
testcase_62 AC 57 ms
23,500 KB
testcase_63 AC 44 ms
24,788 KB
testcase_64 AC 18 ms
11,520 KB
testcase_65 AC 94 ms
63,488 KB
testcase_66 AC 35 ms
18,560 KB
testcase_67 AC 71 ms
41,728 KB
testcase_68 AC 47 ms
19,704 KB
testcase_69 AC 103 ms
77,952 KB
testcase_70 AC 36 ms
27,008 KB
testcase_71 AC 39 ms
29,092 KB
testcase_72 AC 33 ms
6,912 KB
testcase_73 AC 68 ms
51,584 KB
testcase_74 AC 99 ms
62,464 KB
testcase_75 AC 49 ms
29,268 KB
testcase_76 AC 76 ms
49,152 KB
testcase_77 AC 106 ms
70,784 KB
testcase_78 AC 64 ms
21,500 KB
testcase_79 AC 86 ms
42,880 KB
testcase_80 AC 77 ms
45,440 KB
testcase_81 AC 67 ms
47,232 KB
testcase_82 AC 358 ms
243,456 KB
testcase_83 AC 464 ms
243,456 KB
testcase_84 AC 466 ms
243,456 KB
testcase_85 AC 492 ms
243,328 KB
testcase_86 AC 243 ms
243,456 KB
testcase_87 AC 351 ms
243,456 KB
testcase_88 AC 353 ms
243,456 KB
testcase_89 AC 360 ms
243,456 KB
testcase_90 AC 352 ms
243,456 KB
testcase_91 AC 356 ms
243,456 KB
testcase_92 AC 521 ms
243,496 KB
testcase_93 AC 520 ms
243,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define _USE_MATH_DEFINES
#include <bits/stdc++.h>
using namespace std;
vector<int> sieve(int n) {
  vector<int> primes;
  vector<bool> is_prime(n + 1, 1);
  is_prime[0] = 0;
  is_prime[1] = 0;
  for (int i = 2; i <= n; i++) {
    if (!is_prime[i]) continue;
    primes.push_back(i);
    for (int j = i + i; j <= n; j += i) {
      is_prime[j] = 0;
    }
  }
  return primes;
}
signed main() { 
  ios::sync_with_stdio(false); cin.tie(0);
  vector<int> primes = sieve(2000);
  int n;
  cin >> n;
  int m = (int) primes.size();
  vector<vector<long long>> cnt(n + 1, vector<long long>(m));
  vector<int> zero(n + 1);
  for (int i = 0; i < n; i++) {
    int a;
    cin >> a;
    vector<int> tmp(m);
    if (a == 0) {
      zero[i + 1] = zero[i] + 1;
    } else {
      zero[i + 1] = zero[i];
      for (int j = 0; j < m; j++) {
        int c = 0;
        while (a % primes[j] == 0) {
          a /= primes[j];
          c++;
        }
        tmp[j] = c;
      }
    }
    for (int j = 0; j < m; j++) {
      cnt[i + 1][j] = cnt[i][j] + tmp[j];
    }
  }
  int q;
  cin >> q;
  for (int i = 0; i < q; i++) {
    int p, l, r;
    cin >> p >> l >> r;
    if (zero[l - 1] != zero[r]) {
      puts("Yes");
      continue;
    } 
    bool ok = true;
    for (int j = 0; j < m; j++) {
      int c = 0;
      while (p % primes[j] == 0) {
        p /= primes[j];
        c++;
      }
      ok &= (c <= cnt[r][j] - cnt[l - 1][j]);
    }
    ok &= (p == 1);
    puts(ok ? "Yes" : "NO");
  }
  return 0;
}
0