結果

問題 No.106 素数が嫌い!2
ユーザー goodbatongoodbaton
提出日時 2015-08-04 23:23:41
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 31 ms / 5,000 ms
コード長 997 bytes
コンパイル時間 479 ms
コンパイル使用メモリ 71,580 KB
実行使用メモリ 13,548 KB
最終ジャッジ日時 2024-07-18 01:20:54
合計ジャッジ時間 1,292 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 16 ms
11,496 KB
testcase_01 AC 7 ms
6,940 KB
testcase_02 AC 8 ms
6,944 KB
testcase_03 AC 7 ms
6,940 KB
testcase_04 AC 17 ms
11,372 KB
testcase_05 AC 29 ms
13,424 KB
testcase_06 AC 27 ms
13,548 KB
testcase_07 AC 25 ms
13,548 KB
testcase_08 AC 10 ms
6,944 KB
testcase_09 AC 9 ms
6,944 KB
testcase_10 AC 27 ms
13,344 KB
testcase_11 AC 15 ms
11,372 KB
testcase_12 AC 31 ms
13,420 KB
testcase_13 AC 8 ms
6,984 KB
testcase_14 AC 7 ms
6,944 KB
testcase_15 AC 7 ms
6,940 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:40:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   40 |     scanf("%d%d",&n,&k);
      |     ~~~~~^~~~~~~~~~~~~~

ソースコード

diff #

#include <cstdio>
#include <cstdlib>
#include <iostream>
#include <string>
#include <cmath>
#include <algorithm>
#include <vector>
#include <queue>
#include <stack>
#include <map>
#include <set>
#include <cstring>

typedef long long ll;
using namespace std;

#define mod 1000000009
#define INF 10000000
#define LLINF 2000000000000000000LL

#define SIZE 101

const int MAX_P = 2000000;
bool prime[MAX_P+1];
void primen(void){
    for(int i=2;i<=MAX_P;i++)
        prime[i]=true;
    
    for(int i=2;i*i<=MAX_P;i++)
        if(prime[i])
            for(int j=i;i*j<=MAX_P;j++)
                prime[i*j]=false;
    
}

int n,k,num[2000001]={0},ans=0;

int main(){
    
    scanf("%d%d",&n,&k);
    
    primen();
    
    for(int i=2;i<=n;i++){
        if(prime[i]){
            for(int j=i;j<=n;j+=i){
                num[j]++;
            }
        }
    }
    
    for(int i=2;i<=n;i++){
        if(num[i]>=k){
            ans++;
        }
    }
    
    printf("%d\n",ans);
    
    return 0;
}
0