結果

問題 No.854 公平なりんご分配
ユーザー そすうぽよそすうぽよ
提出日時 2019-07-26 22:51:15
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,697 ms / 3,153 ms
コード長 1,381 bytes
コンパイル時間 2,197 ms
コンパイル使用メモリ 208,380 KB
実行使用メモリ 122,880 KB
最終ジャッジ日時 2024-07-02 08:47:29
合計ジャッジ時間 22,057 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 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 2 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 2 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 5 ms
5,376 KB
testcase_23 AC 5 ms
5,376 KB
testcase_24 AC 8 ms
5,376 KB
testcase_25 AC 4 ms
5,376 KB
testcase_26 AC 8 ms
5,376 KB
testcase_27 AC 6 ms
5,376 KB
testcase_28 AC 5 ms
5,376 KB
testcase_29 AC 3 ms
5,376 KB
testcase_30 AC 4 ms
5,376 KB
testcase_31 AC 7 ms
5,376 KB
testcase_32 AC 85 ms
28,416 KB
testcase_33 AC 120 ms
16,768 KB
testcase_34 AC 234 ms
38,016 KB
testcase_35 AC 150 ms
30,592 KB
testcase_36 AC 70 ms
5,376 KB
testcase_37 AC 84 ms
26,752 KB
testcase_38 AC 59 ms
22,400 KB
testcase_39 AC 408 ms
40,192 KB
testcase_40 AC 136 ms
14,720 KB
testcase_41 AC 158 ms
25,088 KB
testcase_42 AC 191 ms
37,504 KB
testcase_43 AC 266 ms
26,112 KB
testcase_44 AC 284 ms
34,944 KB
testcase_45 AC 192 ms
9,344 KB
testcase_46 AC 386 ms
34,432 KB
testcase_47 AC 113 ms
20,480 KB
testcase_48 AC 172 ms
36,864 KB
testcase_49 AC 162 ms
37,632 KB
testcase_50 AC 77 ms
26,880 KB
testcase_51 AC 389 ms
35,968 KB
testcase_52 AC 199 ms
17,408 KB
testcase_53 AC 92 ms
17,152 KB
testcase_54 AC 209 ms
20,096 KB
testcase_55 AC 57 ms
17,280 KB
testcase_56 AC 52 ms
18,048 KB
testcase_57 AC 100 ms
14,976 KB
testcase_58 AC 160 ms
8,064 KB
testcase_59 AC 43 ms
13,568 KB
testcase_60 AC 136 ms
15,104 KB
testcase_61 AC 48 ms
5,632 KB
testcase_62 AC 148 ms
13,312 KB
testcase_63 AC 99 ms
13,824 KB
testcase_64 AC 33 ms
7,168 KB
testcase_65 AC 105 ms
33,152 KB
testcase_66 AC 81 ms
10,752 KB
testcase_67 AC 153 ms
22,528 KB
testcase_68 AC 133 ms
11,392 KB
testcase_69 AC 86 ms
40,192 KB
testcase_70 AC 50 ms
14,848 KB
testcase_71 AC 57 ms
16,000 KB
testcase_72 AC 97 ms
5,376 KB
testcase_73 AC 81 ms
27,136 KB
testcase_74 AC 191 ms
32,640 KB
testcase_75 AC 106 ms
16,128 KB
testcase_76 AC 136 ms
25,984 KB
testcase_77 AC 142 ms
36,736 KB
testcase_78 AC 198 ms
12,288 KB
testcase_79 AC 199 ms
22,912 KB
testcase_80 AC 188 ms
24,192 KB
testcase_81 AC 113 ms
25,088 KB
testcase_82 AC 540 ms
122,752 KB
testcase_83 AC 738 ms
122,880 KB
testcase_84 AC 713 ms
122,752 KB
testcase_85 AC 734 ms
122,880 KB
testcase_86 AC 494 ms
122,752 KB
testcase_87 AC 536 ms
122,880 KB
testcase_88 AC 538 ms
122,752 KB
testcase_89 AC 532 ms
122,752 KB
testcase_90 AC 530 ms
122,752 KB
testcase_91 AC 534 ms
122,752 KB
testcase_92 AC 1,697 ms
122,752 KB
testcase_93 AC 1,681 ms
122,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define FOR(i,k,n)  for(int i = (k);i < (n);++i)
#define REP(i,n)    FOR(i,0,n)
#define ALL(x)      begin(x),end(x)

using namespace std;
using vecint = vector<int>;
using ll = int64_t;

vecint pl(int n) {
  vector<bool> b(n+1, true);
  b[0] = b[1] = false;
  for (int i = 2; i*i <= n; ++i)
    if (b[i])
      for (int j = i*i; j <= n; j += i)
        b[j] = false;
  vecint res;
  REP(i,n+1)
    if (b[i])
      res.push_back(i);
  return res;
}

int main()
{
  int n;
  cin>>n;
  vector<vecint> v(304, vecint(n+1, 0));
  auto pp = pl(2000);
  int np = pp.size();
  REP(i,n) {
    int b;
    cin>>b;
    if (b == 0) {
      v[303][i+1] = v[303][i] + 1;
      REP(j,np) {
        v[j][i+1] = v[j][i];
      }
    } else {
      v[303][i+1] = v[303][i];
      REP(j,np) {
        v[j][i+1] = v[j][i];
        while ((b % pp[j]) == 0) {
          b /= pp[j];
          ++v[j][i+1];
        }
      }
    }
  }
  int q;
  cin>>q;
  REP(i,q) {
    int p,l,r;
    cin>>p>>l>>r;
    if (v[303][r] - v[303][l-1] > 0) {
      cout << "Yes" << endl;
      continue;
    }
    REP(j,np) {
      int d = v[j][r] - v[j][l-1];
      REP(k,d) {
        if ((p % pp[j]) == 0) {
          p /= pp[j];
        } else {
          break;
        }
      }
    }
    if (p == 1) {
      cout << "Yes" << endl;
    } else {
      cout << "NO" << endl;
    }
  }
  return 0;
}
0