結果

問題 No.36 素数が嫌い!
コンテスト
ユーザー imulan
提出日時 2016-02-10 03:18:29
言語 C++11
(gcc 15.2.0 + boost 1.89.0)
コンパイル:
g++-15 -O2 -lm -std=gnu++11 -Wuninitialized -DONLINE_JUDGE -o a.out _filename_
実行:
./a.out
結果
WA  
実行時間 -
コード長 583 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 838 ms
コンパイル使用メモリ 176,692 KB
実行使用メモリ 7,976 KB
最終ジャッジ日時 2026-04-10 03:52:43
合計ジャッジ時間 2,306 ms
ジャッジサーバーID
(参考情報)
judge1_0 / judge2_1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 17 WA * 9
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

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

typedef long long ll;
#define rep(i,n) for(i=0;i<n;++i)
#define each(itr,c) for(__typeof(c.begin()) itr=c.begin(); itr!=c.end(); itr++)
#define mp make_pair
#define pb push_back
#define fi first
#define sc second

bool prime(ll n){
  bool ret=true;
  for(ll i=2; i*i<=n; ++i){
    if(n%i==0) ret=false;
  }
  return ret;
}

int main(int argc, char const *argv[]) {
  ll n;
  cin >>n;

  bool ans=true;
  if(n==1) ans=false;
  else if(prime(n))ans=false;

  string r="NO";
  if(ans) r="YES";
  std::cout << r << std::endl;
  return 0;
}
0