結果

問題 No.2751 429-like Number
ユーザー KeiKei
提出日時 2024-05-10 23:18:24
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,041 ms / 4,000 ms
コード長 657 bytes
コンパイル時間 2,532 ms
コンパイル使用メモリ 204,288 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-05-10 23:18:51
合計ジャッジ時間 25,527 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,816 KB
testcase_01 AC 3 ms
6,940 KB
testcase_02 AC 4 ms
6,944 KB
testcase_03 AC 5 ms
6,940 KB
testcase_04 AC 3 ms
6,940 KB
testcase_05 AC 3 ms
6,944 KB
testcase_06 AC 7 ms
6,944 KB
testcase_07 AC 1,041 ms
6,944 KB
testcase_08 AC 1,005 ms
6,940 KB
testcase_09 AC 1,033 ms
6,944 KB
testcase_10 AC 1,033 ms
6,944 KB
testcase_11 AC 1,018 ms
6,940 KB
testcase_12 AC 1,021 ms
6,940 KB
testcase_13 AC 1,008 ms
6,940 KB
testcase_14 AC 1,004 ms
6,940 KB
testcase_15 AC 1,018 ms
6,940 KB
testcase_16 AC 1,027 ms
6,940 KB
testcase_17 AC 1,041 ms
6,940 KB
testcase_18 AC 1,035 ms
6,944 KB
testcase_19 AC 1,006 ms
6,944 KB
testcase_20 AC 1,006 ms
6,944 KB
testcase_21 AC 1,009 ms
6,948 KB
testcase_22 AC 1,037 ms
6,944 KB
testcase_23 AC 1,021 ms
6,940 KB
testcase_24 AC 1,007 ms
6,944 KB
testcase_25 AC 1,007 ms
6,944 KB
testcase_26 AC 1,032 ms
6,944 KB
testcase_27 AC 1,004 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
int sqA = 100010;
int main() {
  vector<int> p;
  vector<bool> isp(sqA + 1, true);
  for (int i = 2; i <= sqA; i++) {
    if (isp[i]) {
      p.push_back(i);
      for (long long j = (long long)i * i; j <= sqA; j+=i) {
        isp[j] = false;
      }
    }
  }
  int Q;
  cin >> Q;
  int Np = p.size();
  while (Q--) {
    long long A;
    cin >> A;
    int cnt = 0;
    for (int i = 0; i < Np; i++) {
      if (A % p[i] == 0) {
        while (A % p[i] == 0) {
          A /= p[i];
          cnt++;
        }
      } 
    }
    if (A > 1) {
      cnt++;
    }
    cout << (cnt == 3 ? "Yes" : "No") << endl;
  }
}
0