結果

問題 No.36 素数が嫌い!
ユーザー Naoyk1212Naoyk1212
提出日時 2016-08-09 14:27:50
言語 C++11
(gcc 11.4.0)
結果
RE  
実行時間 -
コード長 730 bytes
コンパイル時間 1,838 ms
コンパイル使用メモリ 162,528 KB
実行使用メモリ 107,008 KB
最終ジャッジ日時 2024-04-24 22:59:37
合計ジャッジ時間 8,055 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 AC 2 ms
5,376 KB
testcase_03 WA -
testcase_04 AC 1 ms
5,376 KB
testcase_05 TLE -
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 -- -
testcase_28 -- -
testcase_29 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;

int main(){
  long long n;
  cin >> n;
  vector<long long> primes;
  vector<bool> isPrime(n, true);
  isPrime[0] = false;
  isPrime[1] = false;
  for(long long i = 2; i <= n; i++){
    if(isPrime[i] == true){
      primes.push_back(i);
      for(long long j = i * 2; j <= n; j += i){
        isPrime[j] = false;
      }
    }
  }
  long long j = 0;
  bool ok = false;
  for(long long i = 1; i < n; i++){
    if(i == 1){
      continue;
    }else if(i == primes[j]){
      j++;
      continue;
    }else{
      if(n % i == 0){
        ok = true;
        break;
      }
    }
    cout << i << " " << ok << endl;
  }
  if(ok == true)cout << "YES" << endl;
  else cout << "NO" << endl;
}
0