結果

問題 No.2751 429-like Number
ユーザー tobbietobbie
提出日時 2024-06-09 11:39:31
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
TLE  
実行時間 -
コード長 625 bytes
コンパイル時間 1,890 ms
コンパイル使用メモリ 167,716 KB
実行使用メモリ 10,024 KB
最終ジャッジ日時 2024-12-29 21:03:15
合計ジャッジ時間 27,908 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,024 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 3 ms
5,248 KB
testcase_06 AC 4 ms
5,248 KB
testcase_07 AC 23 ms
5,248 KB
testcase_08 AC 25 ms
5,248 KB
testcase_09 AC 65 ms
5,248 KB
testcase_10 TLE -
testcase_11 AC 1,471 ms
5,248 KB
testcase_12 AC 1,494 ms
5,248 KB
testcase_13 AC 1,155 ms
5,248 KB
testcase_14 AC 3,864 ms
6,816 KB
testcase_15 AC 28 ms
5,248 KB
testcase_16 AC 417 ms
5,248 KB
testcase_17 AC 571 ms
5,248 KB
testcase_18 AC 1,053 ms
5,248 KB
testcase_19 AC 1,055 ms
5,248 KB
testcase_20 AC 1,040 ms
5,248 KB
testcase_21 AC 1,036 ms
5,248 KB
testcase_22 AC 1,035 ms
5,248 KB
testcase_23 AC 1,045 ms
5,248 KB
testcase_24 AC 1,061 ms
5,248 KB
testcase_25 AC 1,042 ms
5,248 KB
testcase_26 AC 1,068 ms
5,248 KB
testcase_27 AC 1,069 ms
8,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

#define rep(i, n) for (int i=0; i<(int)n; i++)
using ll = long long int;

int prime_factorize(ll n, vector<pair<ll, int>> &p) {
  int ret = 0;
  for (ll i = 2; i * i <= n; i++) {
    int k = 0;
    while (n % i == 0) {
      k++;
      n /= i;
    }
    if (k > 0)
      ret += k;
    if (ret > 3) break;
  }
  if (n != 1)
    ret += 1;
  return ret;
}

int main() {
  int Q;
  cin >> Q;
  rep(i, Q) {
    ll Ai;
    cin >> Ai;
    vector<pair<ll, int>> p;
    if (prime_factorize(Ai, p) == 3)
      cout << "Yes" << endl;
    else
      cout << "No" << endl;
  }
  return 0;
}
0