結果

問題 No.36 素数が嫌い!
ユーザー tetsuzuki1115tetsuzuki1115
提出日時 2018-01-08 00:33:48
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 971 bytes
コンパイル時間 526 ms
コンパイル使用メモリ 79,088 KB
実行使用メモリ 42,532 KB
最終ジャッジ日時 2024-06-06 00:42:15
合計ジャッジ時間 8,309 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 217 ms
42,312 KB
testcase_02 AC 225 ms
42,332 KB
testcase_03 AC 221 ms
42,532 KB
testcase_04 AC 228 ms
42,436 KB
testcase_05 AC 232 ms
42,268 KB
testcase_06 AC 227 ms
42,124 KB
testcase_07 AC 222 ms
42,396 KB
testcase_08 AC 202 ms
42,308 KB
testcase_09 AC 207 ms
42,504 KB
testcase_10 AC 224 ms
42,276 KB
testcase_11 AC 223 ms
42,404 KB
testcase_12 AC 216 ms
42,360 KB
testcase_13 AC 231 ms
42,356 KB
testcase_14 AC 198 ms
42,436 KB
testcase_15 AC 199 ms
42,248 KB
testcase_16 AC 227 ms
42,320 KB
testcase_17 AC 237 ms
42,240 KB
testcase_18 AC 206 ms
42,400 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 212 ms
42,368 KB
testcase_25 WA -
testcase_26 AC 228 ms
42,228 KB
testcase_27 AC 231 ms
42,416 KB
testcase_28 AC 225 ms
42,220 KB
testcase_29 AC 224 ms
42,340 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <string>
#include <cstring>
#include <math.h>
#include <cmath>
#include <limits.h>
#include <map>
#include <set>
#include <queue>
#include <algorithm>
#include <functional>
#include <stdio.h>
using namespace std;

long long MOD = 1000000007;


    int p[10000001] = {0};
    

int main() {
    
    long long N;
    cin >> N;
    
    for ( int i = 2; i <= 10000000; i++ ) {
        if ( !p[i] ) {
            long long j = i*2;
            while ( j <= 10000000 ) {
                p[j] = 1;
                j += i;
            }
        }
    }
    
    bool ans = false;
    int a = 0;
    for ( int i = 2; i <= 10000000; i++ ) {
        if ( !p[i] && (N%i) == 0 ) {
            long long n = N;
            while ( !(n%i) ) {
                n /= i;
                a++;
            }
        }
        if ( a >= 3 ) { ans = true; break; }
    }
    
    cout << ( ans ? "YES" : "NO" ) << endl;
    
    
    return 0;
}
0