結果

問題 No.572 妖精の演奏
ユーザー tailstails
提出日時 2017-10-07 01:33:53
言語 Perl
(5.38.2)
結果
AC  
実行時間 659 ms / 2,000 ms
コード長 391 bytes
コンパイル時間 456 ms
コンパイル使用メモリ 6,820 KB
実行使用メモリ 7,808 KB
最終ジャッジ日時 2024-11-17 03:13:56
合計ジャッジ時間 3,686 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 17 ms
6,816 KB
testcase_01 AC 13 ms
6,816 KB
testcase_02 AC 8 ms
6,820 KB
testcase_03 AC 9 ms
6,820 KB
testcase_04 AC 12 ms
6,816 KB
testcase_05 AC 31 ms
6,816 KB
testcase_06 AC 50 ms
6,820 KB
testcase_07 AC 21 ms
6,816 KB
testcase_08 AC 27 ms
6,816 KB
testcase_09 AC 31 ms
6,816 KB
testcase_10 AC 194 ms
6,816 KB
testcase_11 AC 431 ms
7,168 KB
testcase_12 AC 505 ms
7,296 KB
testcase_13 AC 659 ms
7,808 KB
testcase_14 AC 104 ms
6,820 KB
testcase_15 AC 125 ms
6,816 KB
testcase_16 AC 87 ms
6,820 KB
testcase_17 AC 136 ms
6,820 KB
testcase_18 AC 21 ms
6,816 KB
testcase_19 AC 8 ms
6,816 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

$n=<>-1;
@m=0..<>-1;
@1=map[glob],<>;

sub f{
	my($a)=@_;
	return if $a<2;
	return if $u{$a};
	my $b=int$a/2;
	my $c=$a-$b;
	f($b);
	f($c);
	for$y(@m){
		for$x(@m){
			for$z(@m){
				if($$a[$x][$y]<$$b[$x][$z]+$$c[$z][$y]){
					$$a[$x][$y]=$$b[$x][$z]+$$c[$z][$y];
				}
			}
		}
	}
	$u{$a}=1;
}
f($n);
$r=0;
for$y(@m){
	for$x(@m){
		if($r<$$n[$x][$y]){
			$r=$$n[$x][$y];
		}
	}
}
print$r;
0