結果

問題 No.36 素数が嫌い!
ユーザー TAKEKATSUTAKEKATSU
提出日時 2019-03-24 13:58:37
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 108 ms / 5,000 ms
コード長 1,026 bytes
コンパイル時間 1,836 ms
コンパイル使用メモリ 164,112 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-04-10 03:12:47
合計ジャッジ時間 3,062 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
6,812 KB
testcase_01 AC 3 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 36 ms
6,940 KB
testcase_12 AC 108 ms
6,940 KB
testcase_13 AC 108 ms
6,944 KB
testcase_14 AC 2 ms
6,944 KB
testcase_15 AC 2 ms
6,944 KB
testcase_16 AC 2 ms
6,944 KB
testcase_17 AC 2 ms
6,940 KB
testcase_18 AC 1 ms
6,940 KB
testcase_19 AC 6 ms
6,944 KB
testcase_20 AC 5 ms
6,944 KB
testcase_21 AC 16 ms
6,940 KB
testcase_22 AC 3 ms
6,940 KB
testcase_23 AC 2 ms
6,940 KB
testcase_24 AC 17 ms
6,940 KB
testcase_25 AC 21 ms
6,944 KB
testcase_26 AC 39 ms
6,940 KB
testcase_27 AC 4 ms
6,940 KB
testcase_28 AC 38 ms
6,940 KB
testcase_29 AC 3 ms
6,940 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'long long int gcd(long long int, long long int)':
main.cpp:30:11: warning: control reaches end of non-void function [-Wreturn-type]
   30 |   else gcd(b, a%b);
      |        ~~~^~~~~~~~

ソースコード

diff #

#include "bits/stdc++.h"

using namespace std;

#define ll long long
#define vi  vector<int>
#define vvi vector<vi>
#define pi  pair<int,int>
#define mp  make_pair
#define pb  push_back
#define MOD 1e9 + 7
#define PAI  3.1415
#define all(x) (x).begin(),(x).end()
#define chmax(x,y) x = max(x,y)
#define chmin(x,y) x = min(x,y)
#define pr(x) cout << x << endl
#define Endl endl
#define rep(i,n) for(int i = 0 ; i < n; i++)

const int dx[4] = {1,0,-1,0};
const int dy[4] = {0,1,0,-1};
const int ddx[8] = {-1,0,1,-1,1,-1,0,1};
const int ddy[8] = {-1,-1,-1,0,0,1,1,1};
const int inf = 99999999;
const ll linf = 1LL << 62;

ll gcd(ll a,ll b){
  if(a < b)swap(a , b);
  if(a % b == 0) return b;
  else gcd(b, a%b);
}

ll lcm(ll a,ll b){
  if(a < b)swap(a , b);
  return (a/gcd(a , b)) * b;
}

int prime(ll n){

  int ans = 1;

  for(ll i = 2; i < sqrt(n); i++)
  {
    while(n % i == 0){
      ans ++;
      n /= i;
    }  
  }

  return ans;
}

int main(){

  ll n; cin >> n;
  prime(n) >= 3 ? pr("YES") : pr("NO");

  return 0;
}
0