結果

問題 No.36 素数が嫌い!
ユーザー DialBirdDialBird
提出日時 2017-02-08 10:02:24
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 695 bytes
コンパイル時間 731 ms
コンパイル使用メモリ 66,932 KB
実行使用メモリ 8,856 KB
最終ジャッジ日時 2024-06-07 12:56:23
合計ジャッジ時間 3,275 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 86 ms
6,676 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 3 ms
5,376 KB
testcase_05 AC 3 ms
5,376 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 AC 3 ms
5,376 KB
testcase_08 AC 3 ms
5,376 KB
testcase_09 WA -
testcase_10 AC 3 ms
5,376 KB
testcase_11 AC 36 ms
5,656 KB
testcase_12 AC 116 ms
8,728 KB
testcase_13 AC 115 ms
8,852 KB
testcase_14 WA -
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 3 ms
5,376 KB
testcase_18 AC 3 ms
5,376 KB
testcase_19 AC 44 ms
6,676 KB
testcase_20 AC 115 ms
8,724 KB
testcase_21 AC 86 ms
6,676 KB
testcase_22 AC 88 ms
6,676 KB
testcase_23 AC 53 ms
6,804 KB
testcase_24 AC 58 ms
6,664 KB
testcase_25 WA -
testcase_26 AC 67 ms
6,676 KB
testcase_27 AC 101 ms
8,856 KB
testcase_28 AC 66 ms
6,804 KB
testcase_29 AC 112 ms
8,724 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <cmath>

using namespace std;

#define REP(i,first,last) for (int i=first;i<last;i++)

long long N;
vector<bool> prime_check_list(10000000 + 1, true);
vector<int> prime_list;

int main(){
  cin >> N;

  int sqrt_n = sqrt(N);

  prime_check_list[0] = false;
  prime_check_list[1] = false;

  // Nの平方根までの素数を発見
  for (int i=2;i<=sqrt_n;i++) {
    if (prime_check_list[i]) {
      prime_list.push_back(i);
      for (int j=i*2;j<sqrt_n;j+=i) {
        prime_check_list[j] = false;
      }
    }
  }

  int count = 0;
  for (auto p: prime_list) {
    if (N % p == 0) count++;
  }

  cout << (count >= 2 ? "YES" : "NO") << endl;
}
0