結果

問題 No.463 魔法使いのすごろく🎲
ユーザー tailstails
提出日時 2016-12-14 00:32:28
言語 Perl
(5.38.2)
結果
WA  
実行時間 -
コード長 392 bytes
コンパイル時間 808 ms
コンパイル使用メモリ 6,940 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-05-07 10:04:02
合計ジャッジ時間 5,590 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
6,272 KB
testcase_01 AC 15 ms
6,144 KB
testcase_02 AC 16 ms
6,144 KB
testcase_03 AC 8 ms
6,016 KB
testcase_04 AC 21 ms
6,016 KB
testcase_05 AC 26 ms
6,144 KB
testcase_06 AC 8 ms
6,016 KB
testcase_07 AC 9 ms
6,016 KB
testcase_08 AC 15 ms
6,272 KB
testcase_09 AC 104 ms
6,144 KB
testcase_10 AC 11 ms
6,144 KB
testcase_11 AC 97 ms
6,144 KB
testcase_12 AC 43 ms
6,144 KB
testcase_13 AC 8 ms
6,016 KB
testcase_14 AC 152 ms
6,016 KB
testcase_15 AC 159 ms
6,144 KB
testcase_16 AC 9 ms
6,016 KB
testcase_17 AC 210 ms
6,144 KB
testcase_18 AC 8 ms
6,144 KB
testcase_19 AC 11 ms
6,144 KB
testcase_20 WA -
testcase_21 AC 378 ms
6,144 KB
testcase_22 AC 746 ms
6,144 KB
testcase_23 AC 735 ms
6,144 KB
testcase_24 AC 24 ms
6,016 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 466 ms
6,144 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 8 ms
6,016 KB
testcase_36 AC 8 ms
6,272 KB
testcase_37 AC 9 ms
6,016 KB
testcase_38 AC 8 ms
6,144 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

($n,$m)=glob<>;
@c=(0,0,glob<>);
for$s(reverse 1..3*($n-1)){
	for$i(reverse $s/3..$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