結果
問題 | No.106 素数が嫌い!2 |
ユーザー | ku_material_ro |
提出日時 | 2016-09-28 11:00:13 |
言語 | C++11 (gcc 11.4.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 621 bytes |
コンパイル時間 | 460 ms |
コンパイル使用メモリ | 58,788 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-11-21 07:53:06 |
合計ジャッジ時間 | 2,415 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,820 KB |
testcase_03 | AC | 2 ms
6,816 KB |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | AC | 2 ms
6,820 KB |
testcase_14 | AC | 2 ms
6,820 KB |
testcase_15 | AC | 2 ms
6,820 KB |
ソースコード
#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; int k; int d[20000] = {0}; int cnt = 0; int cnt1 = 0; int ans = 0; cin >> n >> k; if (k > 1){ for (long long i1 = 2; i1 < n + 1; i1++){ if (d[i1] == 0){ for (long long i = i1 * 2; i < n + 1; i += i1){ d[i]++; } } if (d[i1] >= k) ans++; } } else{ ans = n - 1; } cout << ans << endl; return 0; }