結果

問題 No.2751 429-like Number
ユーザー tnakao0123tnakao0123
提出日時 2024-05-17 16:58:40
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 977 ms / 4,000 ms
コード長 1,129 bytes
コンパイル時間 1,073 ms
コンパイル使用メモリ 60,524 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-05-17 16:58:46
合計ジャッジ時間 5,593 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 3 ms
6,940 KB
testcase_05 AC 3 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 6 ms
6,940 KB
testcase_08 AC 5 ms
6,940 KB
testcase_09 AC 12 ms
6,944 KB
testcase_10 AC 977 ms
6,944 KB
testcase_11 AC 155 ms
6,944 KB
testcase_12 AC 160 ms
6,944 KB
testcase_13 AC 120 ms
6,944 KB
testcase_14 AC 356 ms
6,940 KB
testcase_15 AC 11 ms
6,940 KB
testcase_16 AC 49 ms
6,944 KB
testcase_17 AC 70 ms
6,944 KB
testcase_18 AC 129 ms
6,944 KB
testcase_19 AC 119 ms
6,940 KB
testcase_20 AC 114 ms
6,944 KB
testcase_21 AC 117 ms
6,944 KB
testcase_22 AC 115 ms
6,940 KB
testcase_23 AC 116 ms
6,944 KB
testcase_24 AC 114 ms
6,940 KB
testcase_25 AC 114 ms
6,944 KB
testcase_26 AC 121 ms
6,940 KB
testcase_27 AC 129 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/* -*- coding: utf-8 -*-
 *
 * 2751.cc:  No.2751 429-like Number - yukicoder
 */

#include<cstdio>
#include<vector>
#include<algorithm>
 
using namespace std;

/* constant */

const int MAX_P = 100000 + 100;

/* typedef */

typedef long long ll;
typedef vector<bool> vb;
typedef vector<int> vi;

/* global variables */

vb primes;
vi pnums;

/* subroutines */

int gen_primes(int maxp) {
  primes.assign(maxp + 1, true);
  primes[0] = primes[1] = false;

  int p;
  for (p = 2; p * p <= maxp; p++)
    if (primes[p]) {
      pnums.push_back(p);
      for (int q = p * p; q <= maxp; q += p) primes[q] = false;
    }
  for (; p <= maxp; p++)
    if (primes[p]) pnums.push_back(p);
  return (int)pnums.size();
}

int prime_decomp(ll n) {
  int cnt = 0;

  for (auto pi: pnums) {
    if ((ll)pi * pi > n) {
      if (n > 1) cnt++;
      break;
    }
    while (n % pi == 0) n /= pi, cnt++;
  }

  return cnt;
}

/* main */

int main() {
  gen_primes(MAX_P);

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

  while (tn--) {
    ll ai;
    scanf("%lld", &ai);
    
    if (prime_decomp(ai) == 3) puts("Yes");
    else puts("No");
  }
  
  return 0;
}
0