結果

問題 No.106 素数が嫌い!2
ユーザー tottoripapertottoripaper
提出日時 2015-03-04 23:08:23
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 58 ms / 5,000 ms
コード長 848 bytes
コンパイル時間 377 ms
コンパイル使用メモリ 24,064 KB
実行使用メモリ 19,204 KB
最終ジャッジ日時 2024-06-24 06:41:15
合計ジャッジ時間 1,931 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
19,200 KB
testcase_01 AC 53 ms
19,196 KB
testcase_02 AC 53 ms
19,196 KB
testcase_03 AC 54 ms
19,196 KB
testcase_04 AC 55 ms
19,068 KB
testcase_05 AC 54 ms
19,204 KB
testcase_06 AC 53 ms
19,072 KB
testcase_07 AC 58 ms
19,072 KB
testcase_08 AC 52 ms
19,204 KB
testcase_09 AC 52 ms
19,200 KB
testcase_10 AC 55 ms
19,200 KB
testcase_11 AC 54 ms
19,076 KB
testcase_12 AC 57 ms
19,200 KB
testcase_13 AC 52 ms
19,072 KB
testcase_14 AC 51 ms
19,200 KB
testcase_15 AC 51 ms
19,200 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:30:15: warning: format ‘%lld’ expects argument of type ‘long long int*’, but argument 2 has type ‘int*’ [-Wformat=]
   30 |     scanf("%lld %d", &N, &K);
      |            ~~~^      ~~
      |               |      |
      |               |      int*
      |               long long int*
      |            %d
main.cpp:30:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   30 |     scanf("%lld %d", &N, &K);
      |     ~~~~~^~~~~~~~~~~~~~~~~~~

ソースコード

diff #

#include <cstdio>

bool isNotPrime[2000001];
int minFactor[2000001], factor_n[2000001];

int main(){
    for(int i=2;i<=2000000;i+=2){
        isNotPrime[i] = true;
        minFactor[i] = 2;
    }
    minFactor[2] = 2;
    for(int i=3;i<=2000000;i+=2){
        if(!isNotPrime[i]){
            minFactor[i] = i;
            for(int j=2*i;j<=2000000;j+=i){
                isNotPrime[j] = true;
                minFactor[j] = i;                
            }
        }
    }
    for(int i=2;i<=2000000;i++){
        if(!isNotPrime[i]){
            factor_n[i] = 1;
        }else{
            factor_n[i] = factor_n[i/minFactor[i]] + (i/minFactor[i]%minFactor[i] != 0);
        }
    }
    
    int N, K;
    scanf("%lld %d", &N, &K);

    int res = 0;
    for(int i=2;i<=N;i++){
        res += factor_n[i] >= K;
    }
    
    printf("%d\n", res);
}
0