結果
問題 | No.106 素数が嫌い!2 |
ユーザー | mayoko_ |
提出日時 | 2014-12-18 23:46:13 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,094 bytes |
コンパイル時間 | 830 ms |
コンパイル使用メモリ | 75,964 KB |
実行使用メモリ | 6,348 KB |
最終ジャッジ日時 | 2024-06-12 01:21:13 |
合計ジャッジ時間 | 7,796 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 18 ms
6,340 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 951 ms
6,084 KB |
testcase_07 | AC | 1,014 ms
6,220 KB |
testcase_08 | WA | - |
testcase_09 | AC | 40 ms
6,236 KB |
testcase_10 | AC | 1,010 ms
6,212 KB |
testcase_11 | AC | 327 ms
6,212 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 18 ms
6,220 KB |
testcase_15 | WA | - |
ソースコード
#include <sstream> #include <string> #include <vector> #include <map> #include <algorithm> #include <iostream> #include <utility> #include <set> #include <cctype> #include <queue> #include <stack> #include <cstdio> #include <cstdlib> #include <cmath> #define INF 1000000000 using namespace std; typedef long long ll; vector<int> prime; bool isPrime[2100000]; void getPrime() { for (int i = 2; i < 2100000; i++) isPrime[i] = true; for (int i = 2; i * i < 2100000; i++) { if (isPrime[i]) { for (int j = 2; j * i < 2100000; j++) { isPrime[i*j] = false; } } } for (int i = 0; i < 2100000; i++) { if (isPrime[i]) prime.push_back(i); } } int getNum(int n) { int ret = 0; for (int i = 0; prime[i] * prime[i] <= n && i < prime.size(); i++) { if (n % prime[i] == 0) ret++; } return ret; } int main(void) { getPrime(); int n, k; cin >> n >> k; int ans = 0; for (int i = 2; i <= n; i++) { if (getNum(i) >= k) ans++; } cout << ans << endl; return 0; }