結果

問題 No.106 素数が嫌い!2
ユーザー SSRSSSRS
提出日時 2020-09-03 07:23:39
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 395 bytes
コンパイル時間 832 ms
コンパイル使用メモリ 74,448 KB
実行使用メモリ 17,972 KB
最終ジャッジ日時 2024-11-22 17:01:09
合計ジャッジ時間 61,366 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 2 ms
13,768 KB
testcase_02 AC 2 ms
13,964 KB
testcase_03 AC 2 ms
17,852 KB
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 AC 2,566 ms
6,820 KB
testcase_09 AC 2,877 ms
6,820 KB
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 AC 2 ms
6,816 KB
testcase_14 AC 2 ms
6,820 KB
testcase_15 AC 2 ms
17,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
using namespace std;
int main(){
	int N, K;
	cin >> N >> K;
	vector<int> f(N + 1, 0);
	f[1] = 0;
	int ans = 0;
	for (int i = 2; i <= N; i++){
		for (int j = 2; j <= i; j++){
			if (i % j == 0){
				int x = i;
				while (x % j == 0){
					x /= j;
				}
				f[i] = f[x] + 1;
				if (f[i] >= K){
					ans++;
				}
				break;
			}
		}
	}
	cout << ans << endl;
}
0