結果

問題 No.352 カード並べ
ユーザー GrenacheGrenache
提出日時 2016-03-11 23:48:49
言語 Java21
(openjdk 21)
結果
AC  
実行時間 139 ms / 2,000 ms
コード長 794 bytes
コンパイル時間 3,358 ms
コンパイル使用メモリ 77,460 KB
実行使用メモリ 56,148 KB
最終ジャッジ日時 2024-09-25 01:27:43
合計ジャッジ時間 5,383 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
54,196 KB
testcase_01 AC 135 ms
54,112 KB
testcase_02 AC 135 ms
54,240 KB
testcase_03 AC 137 ms
55,612 KB
testcase_04 AC 136 ms
56,148 KB
testcase_05 AC 134 ms
54,148 KB
testcase_06 AC 139 ms
53,792 KB
testcase_07 AC 137 ms
54,040 KB
testcase_08 AC 136 ms
54,332 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;


public class Main_yukicoder352 {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        int n = sc.nextInt();

//        long[] fact = new long[n + 1];
//        fact[0] = 1;
//        for (int i = 1; i <= n; i++) {
//        	fact[i] = fact[i - 1] * i;
//        }

        double ret = 2;
        for (int i = 3; i <= n; i++) {
        	int m = i - 1;
        	double tmp = (double)2 / (m + 1);
        	for (int j = 1; j <= m; j++) {
        		for (int k = j + 1; k <= m; k++) {
        			if (j == k) {
        				continue;
        			}

        			tmp += (double)2 * j * k / m / (m + 1);
        		}
        	}

        	ret += tmp;
        }

        System.out.printf("%.7f\n", ret);

        sc.close();
    }
}
0