結果

問題 No.58 イカサマなサイコロ
ユーザー リチウムリチウム
提出日時 2014-11-05 02:11:26
言語 Java21
(openjdk 21)
結果
AC  
実行時間 121 ms / 5,000 ms
コード長 879 bytes
コンパイル時間 2,232 ms
コンパイル使用メモリ 77,412 KB
実行使用メモリ 54,212 KB
最終ジャッジ日時 2024-06-09 19:08:39
合計ジャッジ時間 4,243 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
54,120 KB
testcase_01 AC 105 ms
53,056 KB
testcase_02 AC 116 ms
54,136 KB
testcase_03 AC 117 ms
54,180 KB
testcase_04 AC 115 ms
54,076 KB
testcase_05 AC 103 ms
52,836 KB
testcase_06 AC 113 ms
53,820 KB
testcase_07 AC 117 ms
53,936 KB
testcase_08 AC 115 ms
53,788 KB
testcase_09 AC 117 ms
54,212 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	
	public static void main(String[] args) {
		Scanner sc=new Scanner(System.in);
		int n=sc.nextInt();
		int k=sc.nextInt();
		double dp[][]=new double [n+1][n*6+1];
		double dp2[][]=new double[n+1][n*6+1];
		Arrays.fill(dp[0],0);
		Arrays.fill(dp2[0],0);
		dp[0][0]=1;
		dp2[0][0]=1;
		for(int i=1;i<=n;i++){
			for(int j=0;j<n*6+1;j++){
				for(int p=j-6;p<j;p++){
					if(p>=0){
						dp[i][j]+=dp[i-1][p]/6;
					}
				}
				if(i<=k){
					for(int p=j-6;p<j-3;p++){
						if(p>=0)dp2[i][j]+=dp2[i-1][p]/3;
					}
				}
					else{
						for(int p=j-6;p<j;p++){
							if(p>=0){
								dp2[i][j]+=dp2[i-1][p]/6;
							}
					}
				}
			}
		}
		double ans=0;
		for(int i=0;i<n*6+1;i++){
			for(int j=i+1;j<n*6+1;j++){
				ans+=dp[n][i]*dp2[n][j];
			}
		}
		System.out.println(ans);
		
		}
}
0