結果

問題 No.106 素数が嫌い!2
ユーザー %20%20
提出日時 2018-06-04 12:44:24
言語 Perl
(5.38.2)
結果
AC  
実行時間 1,268 ms / 5,000 ms
コード長 111 bytes
コンパイル時間 89 ms
コンパイル使用メモリ 6,688 KB
実行使用メモリ 86,772 KB
最終ジャッジ日時 2024-06-30 09:35:04
合計ジャッジ時間 9,701 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 586 ms
46,064 KB
testcase_01 AC 7 ms
6,944 KB
testcase_02 AC 7 ms
6,944 KB
testcase_03 AC 7 ms
6,940 KB
testcase_04 AC 586 ms
46,008 KB
testcase_05 AC 1,268 ms
86,620 KB
testcase_06 AC 1,237 ms
86,616 KB
testcase_07 AC 1,236 ms
86,772 KB
testcase_08 AC 55 ms
11,392 KB
testcase_09 AC 59 ms
11,648 KB
testcase_10 AC 1,234 ms
86,772 KB
testcase_11 AC 501 ms
40,872 KB
testcase_12 AC 1,205 ms
84,120 KB
testcase_13 AC 7 ms
6,940 KB
testcase_14 AC 8 ms
6,940 KB
testcase_15 AC 8 ms
6,944 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

($N,$K)=glob<>;
for(2..$N){
	if(!$_[$_]){
		for($i=0;$i<=$N;$i+=$_){
			++$_[$i]
		}
	}
}
print~-grep$_>=$K,@_
0