結果
問題 | No.106 素数が嫌い!2 |
ユーザー | omochana1 |
提出日時 | 2014-12-21 02:35:34 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 31 ms / 5,000 ms |
コード長 | 916 bytes |
コンパイル時間 | 562 ms |
コンパイル使用メモリ | 86,468 KB |
実行使用メモリ | 11,136 KB |
最終ジャッジ日時 | 2024-06-12 02:55:57 |
合計ジャッジ時間 | 1,376 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 12 ms
7,168 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 1 ms
6,940 KB |
testcase_03 | AC | 1 ms
6,944 KB |
testcase_04 | AC | 13 ms
7,424 KB |
testcase_05 | AC | 30 ms
11,136 KB |
testcase_06 | AC | 27 ms
11,136 KB |
testcase_07 | AC | 29 ms
11,136 KB |
testcase_08 | AC | 3 ms
6,940 KB |
testcase_09 | AC | 3 ms
6,940 KB |
testcase_10 | AC | 31 ms
11,136 KB |
testcase_11 | AC | 12 ms
6,944 KB |
testcase_12 | AC | 28 ms
11,008 KB |
testcase_13 | AC | 2 ms
6,944 KB |
testcase_14 | AC | 1 ms
6,940 KB |
testcase_15 | AC | 1 ms
6,940 KB |
ソースコード
#include <iostream> #include <cmath> #include <cstdio> #include <algorithm> #include <string> #include <vector> #include <queue> #include <string.h> #include <map> #include <fstream> #include <functional> #include <bitset> #include <iomanip> #include <stack> #include <set> #include <climits> #define MAX_N 1000100 #define PI 3.141592653589 #define EPS 1e-20 #define BS 10 #define MOD 1000000009 #define ZERO 10001 #define YJSNPI 8101919 #define INF (1 << 28) #define ADD(a, b) a = (a + (ll)b) % MOD #define MUL(a, b) a = (a * (ll)b) % MOD #define MAX(a, b) a = max(a, b) #define MIN(a, b) a = min(a, b) using namespace std; typedef pair<int, int> pi; typedef pair<pi, pi> ppi; int N, K; int cnt[2000010]; int main() { cin >> N >> K; int ans = 0; for(int i = 2; i <= N; i++) { if(cnt[i] == 0) { for(int j = i; j <= N; j += i) { cnt[j]++; } } if(cnt[i] >= K) ans++; } cout << ans << endl; }