結果

問題 No.106 素数が嫌い!2
ユーザー motimoti
提出日時 2018-05-23 00:52:57
言語 Perl
(5.38.2)
結果
TLE  
実行時間 -
コード長 331 bytes
コンパイル時間 42 ms
コンパイル使用メモリ 5,760 KB
実行使用メモリ 280,704 KB
最終ジャッジ日時 2024-06-28 15:58:11
合計ジャッジ時間 20,732 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2,472 ms
132,608 KB
testcase_01 AC 6 ms
5,888 KB
testcase_02 AC 6 ms
5,760 KB
testcase_03 AC 6 ms
5,760 KB
testcase_04 AC 2,499 ms
132,608 KB
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 AC 209 ms
22,400 KB
testcase_09 AC 6 ms
6,948 KB
testcase_10 AC 6 ms
6,944 KB
testcase_11 AC 2,140 ms
121,320 KB
testcase_12 TLE -
testcase_13 AC 6 ms
6,940 KB
testcase_14 AC 6 ms
6,944 KB
testcase_15 AC 7 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 %h;
for (my $i = 2; $i <= $n; $i++) {
  if (!exists$h{$i}) {
    for (my $j = $i; $j <= $n; $j+=$i) {
      $h{$j}++;
    }
  }
  if ($h{$i} >= $k) {
    $ans++;
  }
}

print "$ans\n";
0