結果
| 問題 | No.106 素数が嫌い!2 |
| コンテスト | |
| ユーザー |
tottoripaper
|
| 提出日時 | 2015-03-04 22:53:45 |
| 言語 | C++11 (gcc 15.2.0 + boost 1.90.0) |
| 結果 |
AC
|
| 実行時間 | 1,511 ms / 5,000 ms |
| + 656µs | |
| コード長 | 431 bytes |
| 記録 | |
| コンパイル時間 | 91 ms |
| コンパイル使用メモリ | 38,784 KB |
| 実行使用メモリ | 5,888 KB |
| 最終ジャッジ日時 | 2026-07-28 21:45:56 |
| 合計ジャッジ時間 | 11,015 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 13 |
ソースコード
#include <cstdio>
typedef long long ll;
int main(){
ll N;
int K;
scanf("%lld %d", &N, &K);
int res = 0;
for(ll i=2;i<=N;i++){
ll x = i;
int count = 0;
for(ll j=2;j*j<x;j++){
if(x % j == 0){count++;}
while(x % j == 0){x /= j;}
}
if(x > 1){count++;}
if(count >= K){
res++;
}
}
printf("%d\n", res);
}
tottoripaper