結果

問題 No.36 素数が嫌い!
ユーザー togari_takamototogari_takamoto
提出日時 2016-02-26 13:55:55
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 752 bytes
コンパイル時間 1,313 ms
コンパイル使用メモリ 164,928 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-22 13:56:34
合計ジャッジ時間 3,675 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
6,812 KB
testcase_01 AC 82 ms
6,944 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 1 ms
6,944 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 35 ms
6,944 KB
testcase_12 AC 105 ms
6,940 KB
testcase_13 WA -
testcase_14 AC 66 ms
6,940 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 AC 1 ms
6,944 KB
testcase_17 AC 2 ms
6,944 KB
testcase_18 AC 2 ms
6,944 KB
testcase_19 AC 42 ms
6,940 KB
testcase_20 AC 104 ms
6,944 KB
testcase_21 AC 80 ms
6,944 KB
testcase_22 AC 83 ms
6,940 KB
testcase_23 AC 51 ms
6,940 KB
testcase_24 AC 56 ms
6,940 KB
testcase_25 AC 54 ms
6,944 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using vi  = vector<int>; using vb  = vector<bool>; using vd  = vector<double>; using vl  = vector<ll>;
using vvi = vector<vi>;  using vvb = vector<vb>;   using vvd = vector<vd>;     using vvl = vector<vl>;

pair<vl, vl> primeFactors(ll n){
    vl p,e;
    ll m = n;
    for(ll i = 2; i*i <= n; i++){
        if(m%i != 0) continue;
        int c = 0;
        while(m%i == 0) c++, m /= i;
        p.push_back(i); e.push_back(c);
    }
    if(m > 1){
        p.push_back(m); e.push_back(1);
    }
    return make_pair(p,e);
}

int main() {
	ll n; cin >> n;
	auto v = primeFactors(n);
	ll sum = 0; for (auto& i : v.second) sum += i;
	cout << (sum > 1 ? "YES" : "NO") << endl;
	return 0;
}
0