結果

問題 No.352 カード並べ
ユーザー ぴろずぴろず
提出日時 2016-04-15 15:56:49
言語 Java21
(openjdk 21)
結果
AC  
実行時間 123 ms / 2,000 ms
コード長 660 bytes
コンパイル時間 2,573 ms
コンパイル使用メモリ 74,860 KB
実行使用メモリ 54,256 KB
最終ジャッジ日時 2024-10-04 09:26:51
合計ジャッジ時間 3,723 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
54,256 KB
testcase_01 AC 121 ms
54,004 KB
testcase_02 AC 109 ms
53,436 KB
testcase_03 AC 119 ms
54,124 KB
testcase_04 AC 116 ms
54,112 KB
testcase_05 AC 116 ms
53,428 KB
testcase_06 AC 123 ms
53,568 KB
testcase_07 AC 119 ms
53,940 KB
testcase_08 AC 116 ms
54,132 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no352;

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		System.out.printf("%.7f\n",solve(n));
	}

	public static double solve(int n) {
		double[] fact = new double[n+1];
		fact[0] = 1;
		for(int i=1;i<=n;i++) {
			fact[i] = fact[i-1] * i;
		}
		double sum = 0;
		for(int i=1;i<=n;i++) {
			for(int j=i+1;j<=n;j++) {
				int m = n - Math.max(i,j);
				double pattern = 0;
				for(int k=1;k<=m;k++) {
					pattern += fact[m] / fact[m-k] * fact[n-k-1] * 2;
				}
				sum += pattern * (i * j - 1) / fact[n];
			}
		}
		sum += n;
		return sum;
	}

}
0