結果

問題 No.106 素数が嫌い!2
ユーザー tottoripapertottoripaper
提出日時 2015-03-04 22:53:45
言語 C++11
(gcc 11.4.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 431 bytes
コンパイル時間 287 ms
コンパイル使用メモリ 23,168 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-24 07:47:01
合計ジャッジ時間 35,284 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,987 ms
5,248 KB
testcase_01 AC 0 ms
5,376 KB
testcase_02 AC 0 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1,991 ms
5,376 KB
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 AC 122 ms
5,376 KB
testcase_09 AC 134 ms
5,376 KB
testcase_10 TLE -
testcase_11 AC 1,669 ms
5,376 KB
testcase_12 AC 4,964 ms
5,376 KB
testcase_13 AC 0 ms
5,376 KB
testcase_14 AC 0 ms
5,376 KB
testcase_15 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:8:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    8 |     scanf("%lld %d", &N, &K);
      |     ~~~~~^~~~~~~~~~~~~~~~~~~

ソースコード

diff #

#include <cstdio>

typedef long long ll;

int main(){
    ll N;
    int K;
    scanf("%lld %d", &N, &K);

    int res = 0;
    for(ll i=2;i<=N;i++){
        ll x = i;
        int count = 0;
        for(ll j=2;j*j<x;j++){
            if(x % j == 0){count++;}
            while(x % j == 0){x /= j;}
        }
        if(x > 1){count++;}
        
        if(count >= K){
            res++;
        }
    }

    printf("%d\n", res);
}
0