結果

問題 No.463 魔法使いのすごろく🎲
ユーザー tailstails
提出日時 2016-12-14 01:36:09
言語 Perl
(5.38.2)
結果
AC  
実行時間 1,062 ms / 2,000 ms
コード長 236 bytes
コンパイル時間 70 ms
コンパイル使用メモリ 6,940 KB
実行使用メモリ 6,528 KB
最終ジャッジ日時 2024-06-06 03:55:25
合計ジャッジ時間 8,243 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
6,272 KB
testcase_01 AC 43 ms
6,272 KB
testcase_02 AC 50 ms
6,272 KB
testcase_03 AC 10 ms
6,016 KB
testcase_04 AC 58 ms
6,272 KB
testcase_05 AC 59 ms
6,400 KB
testcase_06 AC 9 ms
6,016 KB
testcase_07 AC 15 ms
6,144 KB
testcase_08 AC 59 ms
6,272 KB
testcase_09 AC 174 ms
6,400 KB
testcase_10 AC 35 ms
6,144 KB
testcase_11 AC 253 ms
6,272 KB
testcase_12 AC 133 ms
6,272 KB
testcase_13 AC 8 ms
6,144 KB
testcase_14 AC 250 ms
6,400 KB
testcase_15 AC 307 ms
6,400 KB
testcase_16 AC 14 ms
6,016 KB
testcase_17 AC 366 ms
6,400 KB
testcase_18 AC 8 ms
6,144 KB
testcase_19 AC 37 ms
6,144 KB
testcase_20 AC 9 ms
6,016 KB
testcase_21 AC 550 ms
6,528 KB
testcase_22 AC 1,062 ms
6,272 KB
testcase_23 AC 1,054 ms
6,400 KB
testcase_24 AC 40 ms
6,400 KB
testcase_25 AC 139 ms
6,400 KB
testcase_26 AC 202 ms
6,400 KB
testcase_27 AC 97 ms
6,400 KB
testcase_28 AC 683 ms
6,528 KB
testcase_29 AC 108 ms
6,528 KB
testcase_30 AC 338 ms
6,528 KB
testcase_31 AC 103 ms
6,528 KB
testcase_32 AC 301 ms
6,400 KB
testcase_33 AC 126 ms
6,400 KB
testcase_34 AC 51 ms
6,400 KB
testcase_35 AC 7 ms
6,144 KB
testcase_36 AC 9 ms
6,144 KB
testcase_37 AC 16 ms
6,144 KB
testcase_38 AC 7 ms
6,016 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

($n,$m)=glob<>;
@c=(0,0,glob<>);
for$i((1..$n-1)x400){
	$e=$f=0;$b=1e99;
	for$j($i+1..$i+$m){
		$k=$n-abs($n-$j);
		$e+=$e[$k]/$m;
		$f+=$f[$k]/$m;
		$b=$f[$k]if$b>$f[$k];
	}
	$e[$i]=$c[$i]+($e<$b?$e:$b);
	$f[$i]=$c[$i]+$f;
}
print$e[1]
0