結果

問題 No.36 素数が嫌い!
ユーザー recososorecososo
提出日時 2020-02-11 16:05:12
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 439 bytes
コンパイル時間 1,659 ms
コンパイル使用メモリ 167,888 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-10-01 08:00:46
合計ジャッジ時間 3,219 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
6,816 KB
testcase_01 AC 69 ms
6,820 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 WA -
testcase_04 AC 2 ms
6,816 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 2 ms
6,816 KB
testcase_08 AC 1 ms
6,816 KB
testcase_09 WA -
testcase_10 AC 2 ms
6,816 KB
testcase_11 AC 30 ms
6,820 KB
testcase_12 AC 90 ms
6,820 KB
testcase_13 AC 91 ms
6,820 KB
testcase_14 WA -
testcase_15 AC 1 ms
6,816 KB
testcase_16 AC 1 ms
6,816 KB
testcase_17 AC 1 ms
6,820 KB
testcase_18 WA -
testcase_19 AC 36 ms
6,816 KB
testcase_20 AC 93 ms
6,820 KB
testcase_21 AC 69 ms
6,816 KB
testcase_22 AC 72 ms
6,820 KB
testcase_23 AC 43 ms
6,816 KB
testcase_24 AC 49 ms
6,816 KB
testcase_25 AC 47 ms
6,816 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
int main(){
    ll n;cin >> n;
    int cnt=0;
    ll num=n;
    for(ll i=2;i*i<=n;i++){
        bool f=false;
        while(num%i==0){
            num/=i;
            f=true;
        }
        if(f){
            cnt++;
        }
    }
    if(num!=1){
        cnt++;
    }
    if(cnt>=2){
        cout << "YES" << endl;
    }
    else{
        cout << "NO" << endl;
    }
}
0