結果
問題 | No.106 素数が嫌い!2 |
ユーザー | otsnsk |
提出日時 | 2014-12-26 21:56:23 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,210 bytes |
コンパイル時間 | 428 ms |
コンパイル使用メモリ | 61,088 KB |
実行使用メモリ | 19,048 KB |
最終ジャッジ日時 | 2024-06-12 23:47:46 |
合計ジャッジ時間 | 3,690 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
ソースコード
#include <iostream> #include <cmath> #include <list> #define FORR(i,b,e) for(int i=(b);i<(int)(e);++i) #define FOR(i,e) FORR(i,0,e) #define dump(var) cerr << #var ": " << var << "\n" #define dumpc(con) for(auto& e: con) cerr << e << " "; cerr<<"\n" typedef long long ll; typedef unsigned long long ull; using namespace std; int prime[2000001]; int f[2000001]; int count_factors(int limit, int thres) { prime[2] = 1; for (int i = 3; i <= limit; i+=2) prime[i] = 1; for (int i = 4; i <= limit; i+=2) { f[i]++; } for (int i = 3, l = limit/2 /*(int)sqrt(limit)+1*/; i <= l; i+=2) { if (prime[i]) { for (int j = i*2; j <= limit; j += i) { prime[j] = 0; f[j]++; } } } FOR(i,limit+1) if(prime[i])cout << i << " "; cout << "\n"; FOR(i,limit+1) cout << f[i] << " "; cout << "\n"; int count = 0; for (int i = 2; i <= limit; i++) { cout << f[i]+prime[i] << " "; count += (f[i]+prime[i] >= thres); } return count; } int main() { cin.tie(0); ios::sync_with_stdio(false); int N, K; cin >> N >> K; cout << count_factors(N, K) << "\n"; return 0; }