結果
問題 | No.106 素数が嫌い!2 |
ユーザー | ku_material_ro |
提出日時 | 2016-09-28 10:22:08 |
言語 | C++11 (gcc 11.4.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 698 bytes |
コンパイル時間 | 684 ms |
コンパイル使用メモリ | 59,356 KB |
実行使用メモリ | 8,448 KB |
最終ジャッジ日時 | 2024-11-21 07:51:34 |
合計ジャッジ時間 | 56,597 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | AC | 2 ms
8,320 KB |
testcase_02 | AC | 2 ms
8,448 KB |
testcase_03 | AC | 2 ms
8,320 KB |
testcase_04 | TLE | - |
testcase_05 | TLE | - |
testcase_06 | TLE | - |
testcase_07 | TLE | - |
testcase_08 | AC | 600 ms
5,248 KB |
testcase_09 | AC | 658 ms
5,248 KB |
testcase_10 | TLE | - |
testcase_11 | TLE | - |
testcase_12 | TLE | - |
testcase_13 | AC | 2 ms
5,248 KB |
testcase_14 | AC | 2 ms
5,248 KB |
testcase_15 | AC | 2 ms
8,448 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; 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 (a != 1) cnt1++; if (cnt1 >= k) ans++; cnt1 = 0; } if (k > 0){ cout << ans << endl; } else{ cout << ans + 1 << endl; } return 0; }