結果

問題 No.2751 429-like Number
ユーザー Spica08Spica08
提出日時 2024-05-10 22:01:04
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,189 bytes
コンパイル時間 2,212 ms
コンパイル使用メモリ 211,104 KB
実行使用メモリ 295,360 KB
最終ジャッジ日時 2024-05-10 22:01:21
合計ジャッジ時間 12,681 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 -- -
testcase_02 -- -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using ull = unsigned long long;
using Matrix = vector<vector<ll>>;
const int inf = 1000000000;
const ll INF = 1000000000000000000;
const ll mod = 998244353;
const ull mod_hash = (1UL << 61) - 1;
const vector<int> dx = {0, 1, 0, -1, 1, 1, -1, -1};
const vector<int> dy = {1, 0, -1, 0, 1, -1, 1, -1};

struct Eratosthenes{
  int N;
  vector<int> min_f;
  vector<int> prime;
  
  Eratosthenes(int N) : N(N){min_f.assign(N, 1000000000);}

  void build(){
    min_f[0] = 1;
    min_f[1] = 1;
    for (int i = 2; i < N; i++) {
      for (int j = 2; i * j < N; j++) {
        min_f[i * j] = min(i, min_f[i * j]);
      }
    }
    for (int i = 0; i < N; i++) {
      if (min_f[i] != inf) continue;
      prime.push_back(i);
    }
  }
};

int main(){
  Eratosthenes e(2500);
  e.build();
  set<ll> s;
  for (int i = 0; i < e.prime.size(); i++) {
    for (int j = i; j < e.prime.size(); j++) {
      for (int k = j; k < e.prime.size(); k++) {
        s.insert(e.prime[i] * e.prime[j] * e.prime[k]);
      }
    }
  }
  int Q;cin>>Q;
  while(Q--){
    ll a;cin>>a;
    cout << (s.count(a) ? "Yes" : "No") << endl;
  }
  return 0;
}
0