結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 198 ms
6,272 KB
testcase_01 AC 65 ms
6,400 KB
testcase_02 AC 77 ms
6,272 KB
testcase_03 AC 14 ms
6,144 KB
testcase_04 AC 92 ms
6,272 KB
testcase_05 AC 89 ms
6,400 KB
testcase_06 AC 10 ms
5,888 KB
testcase_07 AC 19 ms
6,016 KB
testcase_08 AC 93 ms
6,400 KB
testcase_09 AC 264 ms
6,528 KB
testcase_10 AC 53 ms
6,272 KB
testcase_11 AC 398 ms
6,272 KB
testcase_12 AC 217 ms
6,272 KB
testcase_13 AC 8 ms
6,016 KB
testcase_14 AC 390 ms
6,528 KB
testcase_15 AC 487 ms
6,272 KB
testcase_16 AC 20 ms
6,144 KB
testcase_17 AC 587 ms
6,528 KB
testcase_18 AC 10 ms
6,144 KB
testcase_19 AC 57 ms
6,272 KB
testcase_20 AC 10 ms
6,016 KB
testcase_21 AC 894 ms
6,528 KB
testcase_22 AC 1,754 ms
6,272 KB
testcase_23 AC 1,667 ms
6,528 KB
testcase_24 AC 55 ms
6,272 KB
testcase_25 AC 220 ms
6,528 KB
testcase_26 AC 321 ms
6,656 KB
testcase_27 AC 148 ms
6,528 KB
testcase_28 AC 1,097 ms
6,656 KB
testcase_29 AC 167 ms
6,400 KB
testcase_30 AC 515 ms
6,656 KB
testcase_31 AC 176 ms
6,528 KB
testcase_32 AC 496 ms
6,528 KB
testcase_33 AC 197 ms
6,400 KB
testcase_34 AC 80 ms
6,528 KB
testcase_35 AC 8 ms
5,888 KB
testcase_36 AC 10 ms
6,016 KB
testcase_37 AC 23 ms
6,272 KB
testcase_38 AC 7 ms
5,888 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

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