結果
問題 | No.106 素数が嫌い!2 |
ユーザー | aaaaaaiu |
提出日時 | 2019-08-06 00:29:45 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 341 bytes |
コンパイル時間 | 2,024 ms |
コンパイル使用メモリ | 201,664 KB |
実行使用メモリ | 11,304 KB |
最終ジャッジ日時 | 2024-07-18 13:50:50 |
合計ジャッジ時間 | 2,793 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 18 ms
11,224 KB |
testcase_07 | AC | 18 ms
11,136 KB |
testcase_08 | WA | - |
testcase_09 | AC | 3 ms
5,376 KB |
testcase_10 | AC | 18 ms
11,240 KB |
testcase_11 | AC | 8 ms
6,912 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 2 ms
5,376 KB |
testcase_15 | AC | 2 ms
5,376 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef long long ll; int main() { int n,k; cin>>n>>k; int cnt[n+1]{}; for (int i=2;i*i<=n;i++) { if (cnt[i]) continue; for (int j=i;j<=n;j+=i) cnt[j]++; } int ans=0; for (int i=2;i<=n;i++) if (cnt[i] >= k) ans++; cout<<ans<<endl; return 0; }