結果

問題 No.36 素数が嫌い!
ユーザー DialBirdDialBird
提出日時 2016-11-23 09:23:02
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 611 bytes
コンパイル時間 478 ms
コンパイル使用メモリ 65,532 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-05 12:46:40
合計ジャッジ時間 3,090 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
5,248 KB
testcase_01 WA -
testcase_02 AC 21 ms
5,376 KB
testcase_03 AC 21 ms
5,376 KB
testcase_04 AC 20 ms
5,376 KB
testcase_05 AC 21 ms
5,376 KB
testcase_06 AC 21 ms
5,376 KB
testcase_07 AC 20 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 3 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 67 ms
5,376 KB
testcase_12 AC 168 ms
5,376 KB
testcase_13 AC 168 ms
5,376 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 20 ms
5,376 KB
testcase_17 AC 20 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 23 ms
5,376 KB
testcase_20 AC 74 ms
5,376 KB
testcase_21 AC 46 ms
5,376 KB
testcase_22 AC 49 ms
5,376 KB
testcase_23 AC 30 ms
5,376 KB
testcase_24 WA -
testcase_25 AC 31 ms
5,376 KB
testcase_26 AC 108 ms
5,376 KB
testcase_27 AC 146 ms
5,376 KB
testcase_28 AC 106 ms
5,376 KB
testcase_29 AC 164 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

using namespace std;

const long long MAX_N = 100000000000000;
long long N;
vector<bool> nonprimes(10000001);

void get_nonprimes(int n){
  for (int i=2;i<=n;i++) {
    if (nonprimes[i] == 0) {
      for (int j=0;i*(j+2)<=n;j++) {
        nonprimes[i*(j+2)] = 1;
      }
    }
  }
}

int main(){
  string result = "NO";
  cin>>N; 
  get_nonprimes((int)sqrt(N));
  
  for (auto it=nonprimes.begin();it!=nonprimes.end();it++) {
    if (*it && N % distance(nonprimes.begin(), it) == 0) {
      result = "YES"; 
      break;
    }
  }
  cout<<result<<endl;
}
0