結果

問題 No.36 素数が嫌い!
ユーザー BantakoBantako
提出日時 2017-07-13 19:00:51
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 230 ms / 5,000 ms
コード長 742 bytes
コンパイル時間 232 ms
コンパイル使用メモリ 23,424 KB
実行使用メモリ 40,496 KB
最終ジャッジ日時 2024-06-27 01:11:05
合計ジャッジ時間 7,127 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 205 ms
40,448 KB
testcase_01 AC 198 ms
40,320 KB
testcase_02 AC 178 ms
40,320 KB
testcase_03 AC 176 ms
40,332 KB
testcase_04 AC 189 ms
40,448 KB
testcase_05 AC 216 ms
40,424 KB
testcase_06 AC 183 ms
40,436 KB
testcase_07 AC 193 ms
40,320 KB
testcase_08 AC 179 ms
40,472 KB
testcase_09 AC 188 ms
40,448 KB
testcase_10 AC 207 ms
40,320 KB
testcase_11 AC 200 ms
40,424 KB
testcase_12 AC 203 ms
40,384 KB
testcase_13 AC 230 ms
40,400 KB
testcase_14 AC 175 ms
40,496 KB
testcase_15 AC 173 ms
40,320 KB
testcase_16 AC 178 ms
40,320 KB
testcase_17 AC 171 ms
40,332 KB
testcase_18 AC 197 ms
40,320 KB
testcase_19 AC 202 ms
40,332 KB
testcase_20 AC 191 ms
40,320 KB
testcase_21 AC 195 ms
40,328 KB
testcase_22 AC 189 ms
40,448 KB
testcase_23 AC 208 ms
40,320 KB
testcase_24 AC 181 ms
40,380 KB
testcase_25 AC 207 ms
40,440 KB
testcase_26 AC 207 ms
40,448 KB
testcase_27 AC 199 ms
40,320 KB
testcase_28 AC 210 ms
40,332 KB
testcase_29 AC 208 ms
40,320 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:3:1: warning: ISO C++ forbids declaration of ‘main’ with no type [-Wreturn-type]
    3 | main(){
      | ^~~~
main.cpp: In function ‘int main()’:
main.cpp:16:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   16 |     scanf("%lld",&N);
      |     ~~~~~^~~~~~~~~~~

ソースコード

diff #

#include<stdio.h>
int prime[10000001];//素数なら0
main(){
    //素数列を作成
    prime[0] = 1;//0,1は素数ではない
    prime[1] = 1;
    for(int i = 2;i*i <= 10000001;i++){
        if(!prime[i]){
            for(int j = i*2;j <= 10000001;j+=i){
                prime[j] = 1;
            }
        }
    }
    long long N;
    int count = 0;
    scanf("%lld",&N);
    while(N!=1){
        long long flag = N;
        for(int i = 2;i <= 10000000;i++){
            if(prime[i]){continue;}
            if(N%i==0){
                N /= i;
                count++;
                break;
            }
        }
        if(flag == N){
            count++;
            break;
        }
    }
    printf("%s\n",count>=3?"YES":"NO");
}
0