結果

問題 No.390 最長の数列
ユーザー tailstails
提出日時 2016-07-08 23:36:39
言語 Perl
(5.38.2)
結果
AC  
実行時間 3,370 ms / 5,000 ms
コード長 134 bytes
コンパイル時間 233 ms
コンパイル使用メモリ 6,684 KB
実行使用メモリ 86,528 KB
最終ジャッジ日時 2024-10-02 10:36:21
合計ジャッジ時間 10,769 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 356 ms
69,376 KB
testcase_01 AC 170 ms
41,600 KB
testcase_02 AC 327 ms
69,248 KB
testcase_03 AC 231 ms
57,344 KB
testcase_04 AC 331 ms
69,248 KB
testcase_05 AC 144 ms
28,532 KB
testcase_06 AC 1,966 ms
86,528 KB
testcase_07 AC 208 ms
68,992 KB
testcase_08 AC 3 ms
6,816 KB
testcase_09 AC 207 ms
69,248 KB
testcase_10 AC 396 ms
56,308 KB
testcase_11 AC 446 ms
60,404 KB
testcase_12 AC 407 ms
58,484 KB
testcase_13 AC 727 ms
78,080 KB
testcase_14 AC 3,370 ms
86,512 KB
testcase_15 AC 9 ms
13,696 KB
testcase_16 AC 9 ms
13,568 KB
testcase_17 AC 18 ms
15,360 KB
testcase_18 AC 29 ms
17,920 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

<>;$/=$";@x=sort{$a-$b}<>;
for(@x){
	$x=$a[$_]+1;
	$r=$x if $r<$x;
	for($i=$_;($i+=$_)<=1e6;){
		$a[$i]=$x if $a[$i]<$x;
	}
}
print$r
0