結果

問題 No.390 最長の数列
ユーザー %20%20
提出日時 2017-08-28 01:32:02
言語 Perl
(5.38.2)
結果
AC  
実行時間 3,956 ms / 5,000 ms
コード長 133 bytes
コンパイル時間 262 ms
コンパイル使用メモリ 6,824 KB
実行使用メモリ 86,656 KB
最終ジャッジ日時 2024-11-06 07:08:39
合計ジャッジ時間 13,017 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 423 ms
69,504 KB
testcase_01 AC 206 ms
41,728 KB
testcase_02 AC 550 ms
69,248 KB
testcase_03 AC 279 ms
57,472 KB
testcase_04 AC 402 ms
69,376 KB
testcase_05 AC 153 ms
33,192 KB
testcase_06 AC 2,594 ms
86,656 KB
testcase_07 AC 249 ms
69,248 KB
testcase_08 AC 6 ms
12,980 KB
testcase_09 AC 250 ms
69,248 KB
testcase_10 AC 509 ms
58,232 KB
testcase_11 AC 574 ms
62,328 KB
testcase_12 AC 523 ms
60,404 KB
testcase_13 AC 864 ms
80,000 KB
testcase_14 AC 3,956 ms
86,516 KB
testcase_15 AC 10 ms
13,952 KB
testcase_16 AC 10 ms
13,696 KB
testcase_17 AC 23 ms
15,744 KB
testcase_18 AC 34 ms
18,304 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

<>;$/=$";
for$x(sort{$a-$b}<>){
	++$d[$x]>$%and$%=$d[$x];
	for($i=2*$x;$i<=1e6;$i+=$x){
		$d[$x]>$d[$i]and$d[$i]=$d[$x]
	}
}
print$%
0