結果

問題 No.463 魔法使いのすごろく🎲
ユーザー tailstails
提出日時 2016-12-14 01:18:31
言語 Perl
(5.38.2)
結果
AC  
実行時間 1,107 ms / 2,000 ms
コード長 312 bytes
コンパイル時間 281 ms
コンパイル使用メモリ 6,016 KB
実行使用メモリ 6,656 KB
最終ジャッジ日時 2024-05-07 13:39:00
合計ジャッジ時間 8,779 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
6,272 KB
testcase_01 AC 47 ms
6,272 KB
testcase_02 AC 56 ms
6,272 KB
testcase_03 AC 13 ms
5,888 KB
testcase_04 AC 62 ms
6,144 KB
testcase_05 AC 66 ms
6,272 KB
testcase_06 AC 10 ms
6,016 KB
testcase_07 AC 18 ms
6,144 KB
testcase_08 AC 64 ms
6,272 KB
testcase_09 AC 182 ms
6,400 KB
testcase_10 AC 37 ms
6,272 KB
testcase_11 AC 268 ms
6,272 KB
testcase_12 AC 140 ms
6,272 KB
testcase_13 AC 9 ms
6,016 KB
testcase_14 AC 261 ms
6,400 KB
testcase_15 AC 305 ms
6,272 KB
testcase_16 AC 16 ms
6,272 KB
testcase_17 AC 379 ms
6,272 KB
testcase_18 AC 9 ms
6,144 KB
testcase_19 AC 39 ms
6,144 KB
testcase_20 AC 9 ms
5,888 KB
testcase_21 AC 569 ms
6,400 KB
testcase_22 AC 1,099 ms
6,144 KB
testcase_23 AC 1,107 ms
6,528 KB
testcase_24 AC 49 ms
6,272 KB
testcase_25 AC 149 ms
6,528 KB
testcase_26 AC 214 ms
6,400 KB
testcase_27 AC 109 ms
6,528 KB
testcase_28 AC 693 ms
6,400 KB
testcase_29 AC 119 ms
6,656 KB
testcase_30 AC 329 ms
6,400 KB
testcase_31 AC 118 ms
6,400 KB
testcase_32 AC 318 ms
6,272 KB
testcase_33 AC 138 ms
6,400 KB
testcase_34 AC 61 ms
6,528 KB
testcase_35 AC 9 ms
5,888 KB
testcase_36 AC 9 ms
5,888 KB
testcase_37 AC 20 ms
6,144 KB
testcase_38 AC 8 ms
5,888 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

($n,$m)=glob<>;
@c=(0,0,glob<>);
for$i((1..$n-1)x400){
	$e0=0;
	$e1=0;
	for$j($i+1..$i+$m){
		$k=$j<$n?$j:$n*2-$j;
		$e0+=$e0[$k];
		$e1+=$e1[$k];
	}
	$e0/=$m;
	$e1/=$m;
	for$j($i+1..$i+$m){
		$k=$j<$n?$j:$n*2-$j;
		if($e0>$e1[$k]){
			$e0=$e1[$k];
		}
	}
	$e0[$i]=$e0+$c[$i];
	$e1[$i]=$e1+$c[$i];
}
print$e0[1];
0