結果

問題 No.463 魔法使いのすごろく🎲
ユーザー tailstails
提出日時 2016-12-14 00:29:09
言語 Perl
(5.38.2)
結果
WA  
実行時間 -
コード長 375 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 6,016 KB
実行使用メモリ 11,648 KB
最終ジャッジ日時 2024-05-07 10:02:44
合計ジャッジ時間 15,017 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 504 ms
11,648 KB
testcase_01 AC 157 ms
6,144 KB
testcase_02 AC 189 ms
6,016 KB
testcase_03 AC 21 ms
6,016 KB
testcase_04 AC 212 ms
6,144 KB
testcase_05 AC 203 ms
6,272 KB
testcase_06 AC 13 ms
6,016 KB
testcase_07 AC 33 ms
6,016 KB
testcase_08 AC 232 ms
6,144 KB
testcase_09 AC 654 ms
6,144 KB
testcase_10 AC 120 ms
6,144 KB
testcase_11 AC 1,078 ms
6,272 KB
testcase_12 AC 554 ms
6,016 KB
testcase_13 AC 10 ms
6,144 KB
testcase_14 AC 1,004 ms
6,272 KB
testcase_15 AC 1,214 ms
6,272 KB
testcase_16 AC 38 ms
6,016 KB
testcase_17 AC 1,531 ms
6,016 KB
testcase_18 AC 13 ms
6,144 KB
testcase_19 AC 129 ms
6,144 KB
testcase_20 WA -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

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