結果

問題 No.36 素数が嫌い!
ユーザー 久我山菜々久我山菜々
提出日時 2018-11-19 22:20:34
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 617 bytes
コンパイル時間 738 ms
コンパイル使用メモリ 84,608 KB
実行使用メモリ 10,512 KB
最終ジャッジ日時 2024-06-06 21:02:46
合計ジャッジ時間 3,696 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 69 ms
9,364 KB
testcase_01 AC 69 ms
8,848 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 76 ms
8,848 KB
testcase_08 AC 70 ms
8,848 KB
testcase_09 AC 71 ms
9,744 KB
testcase_10 AC 72 ms
8,976 KB
testcase_11 AC 78 ms
10,512 KB
testcase_12 AC 77 ms
9,232 KB
testcase_13 WA -
testcase_14 AC 74 ms
9,236 KB
testcase_15 AC 72 ms
8,720 KB
testcase_16 WA -
testcase_17 AC 80 ms
9,744 KB
testcase_18 AC 73 ms
9,876 KB
testcase_19 AC 70 ms
8,976 KB
testcase_20 AC 70 ms
9,360 KB
testcase_21 AC 68 ms
9,488 KB
testcase_22 AC 70 ms
9,360 KB
testcase_23 AC 69 ms
9,108 KB
testcase_24 AC 70 ms
9,236 KB
testcase_25 AC 72 ms
9,744 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
#include<map>
#include<algorithm>
#include<bitset>

static int const MAX = 10000000 + 1;

std::vector<int> primes() {
  std::vector<int> rs;
  std::bitset<MAX> ps;
  ps.set();
  ps[0] = ps[1] = 0;
  for(int i{2}; i < MAX; ++i) {
    if(!ps[i]) continue;

    rs.push_back(i);
    for(int j{i * 2}; j < MAX; j += i) {
      ps[j] = 0;
    }
  }
  return rs;
}

int main(int, char**) {
  long long n;
  std::cin >> n;

  auto ps = primes();
  for(auto e: ps) {
    if(n % e == 0) {
      std::cout << "YES" << std::endl;
      return 0;
    }
  }
  std::cout << "NO" << std::endl;
}
0