結果
問題 | No.106 素数が嫌い!2 |
ユーザー | 0w1 |
提出日時 | 2016-11-21 01:35:47 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 386 bytes |
コンパイル時間 | 1,393 ms |
コンパイル使用メモリ | 167,048 KB |
実行使用メモリ | 19,072 KB |
最終ジャッジ日時 | 2024-05-05 12:11:15 |
合計ジャッジ時間 | 2,334 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 <bits/stdc++.h> using namespace std; signed main(){ int N, K; cin >> N >> K; vector< int > np( N + 1 ); vector< int > pfcnt( N + 1 ); for( int i = 2; i <= N; ++i ) if( not np[ i ] ){ ++pfcnt[ i ]; for( int j = i + i; j <= N; j += i ) np[ j ] = 1, ++pfcnt[ j ]; } int ans = 0; for( int i = 2; i <= N; ++i ) ans += pfcnt[ i ] >= K; return 0; }