結果
問題 | No.58 イカサマなサイコロ |
ユーザー | scache |
提出日時 | 2014-12-02 04:32:01 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 113 ms / 5,000 ms |
コード長 | 1,190 bytes |
コンパイル時間 | 3,927 ms |
コンパイル使用メモリ | 77,888 KB |
実行使用メモリ | 41,324 KB |
最終ジャッジ日時 | 2024-06-11 07:38:17 |
合計ジャッジ時間 | 5,724 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 105 ms
40,748 KB |
testcase_01 | AC | 111 ms
41,208 KB |
testcase_02 | AC | 106 ms
41,324 KB |
testcase_03 | AC | 106 ms
41,280 KB |
testcase_04 | AC | 103 ms
41,324 KB |
testcase_05 | AC | 106 ms
40,880 KB |
testcase_06 | AC | 106 ms
40,956 KB |
testcase_07 | AC | 113 ms
41,100 KB |
testcase_08 | AC | 96 ms
39,632 KB |
testcase_09 | AC | 107 ms
41,112 KB |
ソースコード
import java.util.Arrays; import java.util.Scanner; public class Main58 { public static void main(String[] args) { Main58 p = new Main58(); } public Main58() { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); int k = sc.nextInt(); solve(n, k); } public void solve(int n, int K) { int[][] tdp = new int[n+1][n*6+1]; int[][] jdp = new int[n+1][n*6+1]; tdp[0][0] = 1; jdp[0][0] = 1; for(int i=0;i<n;i++){ for(int j=0;j<6;j++){ int s = tdp[i].length - 1 - (i<K ? (j/2+4) : (j+1)); for(int k=s;k>=0;k--){ if(i<K) tdp[i+1][j/2+4+k] += tdp[i][k]; else tdp[i+1][j+1+k] += tdp[i][k]; } for(int k=s;k>=0;k--) jdp[i+1][j+1+k] += jdp[i][k]; } } // System.out.println(Arrays.toString(tdp[n])); // System.out.println(Arrays.toString(jdp[n])); long jsum = 0; long count = 0; for(int i=1;i<tdp[n].length;i++){ jsum += jdp[n][i-1]; if(tdp[n][i] == 0) continue; count += tdp[n][i]*jsum; } long total = 1; for(int i=0;i<n;i++) total *= 6; System.out.println((double)count/(total*total)); } }