結果

問題 No.458 異なる素数の和
ユーザー tailstails
提出日時 2016-12-09 00:41:41
言語 Perl
(5.38.2)
結果
AC  
実行時間 494 ms / 2,000 ms
コード長 174 bytes
コンパイル時間 46 ms
コンパイル使用メモリ 5,120 KB
実行使用メモリ 6,912 KB
最終ジャッジ日時 2024-07-05 05:37:54
合計ジャッジ時間 5,293 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
5,248 KB
testcase_01 AC 281 ms
5,888 KB
testcase_02 AC 306 ms
6,272 KB
testcase_03 AC 144 ms
5,504 KB
testcase_04 AC 156 ms
5,632 KB
testcase_05 AC 429 ms
6,528 KB
testcase_06 AC 309 ms
6,144 KB
testcase_07 AC 48 ms
5,376 KB
testcase_08 AC 436 ms
6,528 KB
testcase_09 AC 87 ms
5,376 KB
testcase_10 AC 38 ms
5,376 KB
testcase_11 AC 494 ms
6,912 KB
testcase_12 AC 39 ms
5,376 KB
testcase_13 AC 38 ms
5,376 KB
testcase_14 AC 38 ms
5,376 KB
testcase_15 AC 37 ms
5,376 KB
testcase_16 AC 110 ms
5,376 KB
testcase_17 AC 38 ms
5,376 KB
testcase_18 AC 38 ms
5,376 KB
testcase_19 AC 38 ms
5,376 KB
testcase_20 AC 39 ms
5,376 KB
testcase_21 AC 38 ms
5,376 KB
testcase_22 AC 39 ms
5,376 KB
testcase_23 AC 38 ms
5,376 KB
testcase_24 AC 38 ms
5,376 KB
testcase_25 AC 38 ms
5,376 KB
testcase_26 AC 37 ms
5,376 KB
testcase_27 AC 287 ms
6,016 KB
testcase_28 AC 469 ms
6,656 KB
testcase_29 AC 69 ms
5,376 KB
testcase_30 AC 232 ms
6,016 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

$n=<>;
$h[0]=0;
for$m(grep{!grep{$i%$_<1}2..($i=$_)-1}2..999){
	for$i(reverse $m..$n){
		$h[$i]=$h[$i-$m]+1 if defined $h[$i-$m] && $h[$i]<$h[$i-$m]+1;
	}
}
print $h[$n]||-1;
0