結果

問題 No.567 コンプリート
ユーザー htensaihtensai
提出日時 2019-11-14 21:13:13
言語 Java21
(openjdk 21)
結果
AC  
実行時間 948 ms / 2,000 ms
コード長 590 bytes
コンパイル時間 2,559 ms
コンパイル使用メモリ 74,428 KB
実行使用メモリ 122,324 KB
最終ジャッジ日時 2024-09-22 01:35:54
合計ジャッジ時間 6,448 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
41,312 KB
testcase_01 AC 130 ms
41,176 KB
testcase_02 AC 132 ms
41,228 KB
testcase_03 AC 132 ms
41,272 KB
testcase_04 AC 134 ms
41,312 KB
testcase_05 AC 134 ms
41,432 KB
testcase_06 AC 135 ms
41,024 KB
testcase_07 AC 136 ms
41,052 KB
testcase_08 AC 135 ms
41,328 KB
testcase_09 AC 132 ms
41,524 KB
testcase_10 AC 131 ms
40,852 KB
testcase_11 AC 135 ms
41,152 KB
testcase_12 AC 133 ms
41,220 KB
testcase_13 AC 135 ms
41,280 KB
testcase_14 AC 134 ms
41,364 KB
testcase_15 AC 948 ms
122,324 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		if (n < 6) {
		    System.out.println(0);
		    return;
		}
		double[][] rates = new double[n][6];
		rates[0][0] = 1;
		for (int i = 1; i < n; i++) {
		    for (int j = 0; j < 6; j++) {
		        if (j == 0) {
		            rates[i][j] = rates[i - 1][j] / 6;
		        } else {
		            rates[i][j] = rates[i - 1][j] * (j + 1) / 6 + rates[i - 1][j - 1] * (6 - j) / 6;
		        }
		    }
		}
		System.out.println(rates[n - 1][5]);
	}
}
0