結果

問題 No.106 素数が嫌い!2
ユーザー msm1993msm1993
提出日時 2020-11-18 16:45:54
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 20 ms / 5,000 ms
コード長 193 bytes
コンパイル時間 1,764 ms
コンパイル使用メモリ 167,660 KB
実行使用メモリ 11,176 KB
最終ジャッジ日時 2024-07-23 09:06:34
合計ジャッジ時間 2,334 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
11,132 KB
testcase_01 AC 5 ms
11,176 KB
testcase_02 AC 5 ms
11,056 KB
testcase_03 AC 4 ms
10,992 KB
testcase_04 AC 12 ms
11,052 KB
testcase_05 AC 20 ms
11,004 KB
testcase_06 AC 19 ms
11,028 KB
testcase_07 AC 19 ms
11,088 KB
testcase_08 AC 6 ms
10,996 KB
testcase_09 AC 5 ms
11,008 KB
testcase_10 AC 20 ms
10,968 KB
testcase_11 AC 11 ms
11,024 KB
testcase_12 AC 20 ms
11,116 KB
testcase_13 AC 4 ms
11,032 KB
testcase_14 AC 5 ms
10,968 KB
testcase_15 AC 5 ms
11,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;int main(){int n,k,i=2,j,c=0;vector<int> y(2000001,0);cin>>n>>k;for(;i<=n;i++){if(y[i]==0){for(j=i;j<=n;j+=i){y[j]++;}}c+=(y[i]>=k);}cout<<c<<endl;}
0