結果

問題 No.106 素数が嫌い!2
ユーザー motimoti
提出日時 2018-05-23 01:25:26
言語 Perl
(5.38.2)
結果
AC  
実行時間 1,347 ms / 5,000 ms
コード長 367 bytes
コンパイル時間 108 ms
コンパイル使用メモリ 6,816 KB
実行使用メモリ 70,520 KB
最終ジャッジ日時 2024-06-28 16:00:45
合計ジャッジ時間 8,578 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 632 ms
37,632 KB
testcase_01 AC 6 ms
6,944 KB
testcase_02 AC 6 ms
6,944 KB
testcase_03 AC 7 ms
6,944 KB
testcase_04 AC 646 ms
37,760 KB
testcase_05 AC 1,347 ms
70,520 KB
testcase_06 AC 1,318 ms
70,464 KB
testcase_07 AC 1,322 ms
70,444 KB
testcase_08 AC 58 ms
9,728 KB
testcase_09 AC 6 ms
6,940 KB
testcase_10 AC 6 ms
6,940 KB
testcase_11 AC 527 ms
33,408 KB
testcase_12 AC 1,297 ms
68,540 KB
testcase_13 AC 6 ms
6,944 KB
testcase_14 AC 7 ms
6,944 KB
testcase_15 AC 6 ms
6,940 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

#!/usr/bin/env perl

use strict;
use warnings;

my ($n, $k) = split / /, <>; chomp $k;

if ($k >= 21) {
  print "0\n";
  exit;
}

my $ans = 0;
my @prime_count;
for (my $i = 2; $i <= $n; $i++) {
  if (!$prime_count[$i]) {
    for (my $j = $i; $j <= $n; $j += $i) {
      $prime_count[$j]++;
    }
  }
  if ($prime_count[$i] >= $k) {
    $ans++;
  }
}

print "$ans\n";
0