結果

問題 No.58 イカサマなサイコロ
ユーザー tailstails
提出日時 2019-08-17 02:10:26
言語 Bash
(Bash 5.1.16)
結果
AC  
実行時間 43 ms / 5,000 ms
コード長 248 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 6,944 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-24 18:06:15
合計ジャッジ時間 906 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
6,812 KB
testcase_01 AC 43 ms
6,944 KB
testcase_02 AC 10 ms
6,944 KB
testcase_03 AC 5 ms
6,940 KB
testcase_04 AC 25 ms
6,944 KB
testcase_05 AC 29 ms
6,940 KB
testcase_06 AC 36 ms
6,940 KB
testcase_07 AC 9 ms
6,940 KB
testcase_08 AC 17 ms
6,940 KB
testcase_09 AC 36 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

read -dx n k
for((d=e=1;l<n;)){
	for((j=70;j--;)){
		for((i=6;--i;)){
			((d[j+i]+=d[j]))
			((e[j+i]+=e[j]*(i<3)))
		}
	}
	e=(0 0 0 ${e[@]})
	((l++<n-k))&&e=(${d[@]})
}
for((j=70;--j;)){
	((s+=(e[j]+=e[j+1])*d[j-1]))
}
echo $[1000*(s<<k)/36**n]e-3
0