結果

問題 No.106 素数が嫌い!2
ユーザー ku_material_roku_material_ro
提出日時 2016-09-28 10:26:30
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 723 bytes
コンパイル時間 641 ms
コンパイル使用メモリ 60,660 KB
実行使用メモリ 13,636 KB
最終ジャッジ日時 2024-11-21 07:52:40
合計ジャッジ時間 45,400 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,216 ms
8,448 KB
testcase_01 AC 2 ms
8,320 KB
testcase_02 AC 2 ms
10,496 KB
testcase_03 AC 2 ms
8,448 KB
testcase_04 AC 4,656 ms
8,320 KB
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 AC 267 ms
5,248 KB
testcase_09 AC 669 ms
5,248 KB
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 AC 1 ms
5,248 KB
testcase_14 AC 2 ms
5,248 KB
testcase_15 AC 2 ms
8,448 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<string>
#include<math.h>
using namespace std;

/*int sosu(long long N){
	long long A;
	int J = 0;
	for (long long i1 = 2; i1 < N/2; i1++){
		A = (N / i1)*i1;
		if (A == N){
			J = 1;
			break;
		}
	}
	return J;

}*/

int main(){
	long long n;
	long long a;
	int k;
	int cnt = 0;
	int cnt1 = 0;
	int ans = 0;
	cin >> n >> k;

	for (long long i1 = 2; i1 < n+1; i1++){
		a = i1;
		for (long long i = 2; i < sqrt(n); i++){
			while (a%i == 0){
				a /= i;
				cnt++;
			}
			if (cnt>0){
				cnt1++;
				cnt = 0;
			}
			if (cnt1 >= k) break;
		}
		if (a != 1) cnt1++;
		if (cnt1 >= k) ans++;
		cnt1 = 0;
	}
	if (k > 0){
		cout << ans << endl;
	}
	else{
		cout << ans + 1 << endl;
	}
	

	return 0;
}
0