結果

問題 No.2751 429-like Number
ユーザー maeshunmaeshun
提出日時 2024-05-10 22:54:25
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,148 ms / 4,000 ms
コード長 1,965 bytes
コンパイル時間 4,428 ms
コンパイル使用メモリ 267,124 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-05-10 22:54:55
合計ジャッジ時間 29,586 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,816 KB
testcase_01 AC 3 ms
6,944 KB
testcase_02 AC 4 ms
6,940 KB
testcase_03 AC 4 ms
6,940 KB
testcase_04 AC 3 ms
6,940 KB
testcase_05 AC 3 ms
6,940 KB
testcase_06 AC 6 ms
6,940 KB
testcase_07 AC 1,133 ms
6,940 KB
testcase_08 AC 1,140 ms
6,940 KB
testcase_09 AC 1,136 ms
6,944 KB
testcase_10 AC 1,137 ms
6,944 KB
testcase_11 AC 1,109 ms
6,944 KB
testcase_12 AC 1,119 ms
6,944 KB
testcase_13 AC 1,134 ms
6,940 KB
testcase_14 AC 1,108 ms
6,940 KB
testcase_15 AC 1,148 ms
6,940 KB
testcase_16 AC 1,140 ms
6,940 KB
testcase_17 AC 1,135 ms
6,944 KB
testcase_18 AC 1,135 ms
6,944 KB
testcase_19 AC 1,138 ms
6,940 KB
testcase_20 AC 1,107 ms
6,944 KB
testcase_21 AC 1,140 ms
6,944 KB
testcase_22 AC 1,137 ms
6,944 KB
testcase_23 AC 1,135 ms
6,940 KB
testcase_24 AC 1,138 ms
6,940 KB
testcase_25 AC 1,135 ms
6,940 KB
testcase_26 AC 1,135 ms
6,940 KB
testcase_27 AC 1,116 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
#define rep(i, n) for(int i=0;i<(n);++i)
#define rep1(i, n) for(int i=1;i<=(n);i++)
#define ll long long
using mint = modint998244353;
using P = pair<ll,ll>;
using lb = long double;
using T = tuple<ll, ll, ll>;
#ifdef LOCAL
#  include <debug_print.hpp>
#  define dbg(...) debug_print::multi_print(#__VA_ARGS__, __VA_ARGS__)
#else
#  define dbg(...) (static_cast<void>(0))
#endif

// Sieve of Eratosthenes
// https://youtu.be/UTVg7wzMWQc?t=2774
//long longだとおそい
struct Sieve {
  int n;
  vector<int> f, primes;
  Sieve(int n=1):n(n), f(n+1) {
    f[0] = f[1] = -1;
    for (ll i = 2; i <= n; ++i) {
      if (f[i]) continue;
      primes.push_back(i);
      f[i] = i;
      for (ll j = i*i; j <= n; j += i) {
        if (!f[j]) f[j] = i;
      }
    }
  }
  bool isPrime(int x) { return f[x] == x;}
  vector<int> factorList(int x) {
    vector<int> res;
    while (x != 1) {
      res.push_back(f[x]);
      x /= f[x];
    }
    return res;
  }
  vector<P> factor(int x) {
    vector<int> fl = factorList(x);
    if (fl.size() == 0) return {};
    vector<P> res(1, P(fl[0], 0));
    for (int p : fl) {
      if (res.back().first == p) {
        res.back().second++;
      } else {
        res.emplace_back(p, 1);
      }
    }
    return res;
  }
  vector<pair<ll,int>> factor(ll x) {
    vector<pair<ll,int>> res;
    for (int p : primes) {
      int y = 0;
      while (x%p == 0) x /= p, ++y;
      if (y != 0) res.emplace_back(p,y);
    }
    if (x != 1) res.emplace_back(x,1);
    return res;
  }
};

int main()
{
    int q;
    cin >> q;
    Sieve s(1e5+5);
    for(int i=0;i<q;i++) {
        ll a;
        cin >> a;
        int cnt = 0;
        for(int p : s.primes) {
            while(a%p==0) {
                cnt++;
                a/=p;
            }
        }
        if(a!=1) cnt++;
        cout << (cnt==3?"Yes":"No") << endl;
    }
    return 0;
}
0