結果

問題 No.133 カードゲーム
ユーザー ameame
提出日時 2019-08-27 12:29:20
言語 Java21
(openjdk 21)
結果
AC  
実行時間 140 ms / 5,000 ms
コード長 1,529 bytes
コンパイル時間 2,235 ms
コンパイル使用メモリ 77,504 KB
実行使用メモリ 55,824 KB
最終ジャッジ日時 2024-11-14 07:33:29
合計ジャッジ時間 6,487 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
54,012 KB
testcase_01 AC 134 ms
54,080 KB
testcase_02 AC 137 ms
54,052 KB
testcase_03 AC 138 ms
53,812 KB
testcase_04 AC 136 ms
53,896 KB
testcase_05 AC 140 ms
53,848 KB
testcase_06 AC 136 ms
54,016 KB
testcase_07 AC 135 ms
55,824 KB
testcase_08 AC 138 ms
54,004 KB
testcase_09 AC 137 ms
54,144 KB
testcase_10 AC 135 ms
53,784 KB
testcase_11 AC 136 ms
54,116 KB
testcase_12 AC 138 ms
54,060 KB
testcase_13 AC 133 ms
54,332 KB
testcase_14 AC 136 ms
54,116 KB
testcase_15 AC 139 ms
54,124 KB
testcase_16 AC 138 ms
54,156 KB
testcase_17 AC 137 ms
53,884 KB
testcase_18 AC 139 ms
54,136 KB
testcase_19 AC 138 ms
54,012 KB
testcase_20 AC 136 ms
54,008 KB
testcase_21 AC 137 ms
54,052 KB
testcase_22 AC 135 ms
54,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Main {
    static int n;
    static int[] b;
    static int[] a;
    static long win = 0;

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        n = sc.nextInt();
        a = new int[n];
        b = new int[n];
        for (int i = 0; i < n; i++) {
            a[i] = sc.nextInt();
        }
        for (int i = 0; i < n; i++) {
            b[i] = sc.nextInt();
        }
        boolean used[] = new boolean[n];
        int[] tmp = new int[n];
        long battlenum[] = new long[n + 10];
        battlenum[0] = 1;
        battlenum[1] = 1;
        for (int i = 2; i < 10; i++) {
            battlenum[i] = i * battlenum[i - 1];
        }
        permutation(a, tmp, used, 0);
        System.out.println(win * 1.0 / battlenum[n]);

        sc.close();
    }

    public static void permutation(int[] origin, int[] tmp, boolean[] used, int index) {
        if (index == n) {
            // 処理
            Battle(tmp);
            return;
        }
        for (int i = 0; i < n; i++) {
            if (used[i])
                continue;
            tmp[index] = origin[i];
            used[i] = true;
            permutation(origin, tmp, used, index + 1);
            used[i] = false;
        }
    }

    public static void Battle(int[] op) {
        int cnt = 0;
        for (int i = 0; i < n; i++) {
            if (op[i] > b[i]) {
                cnt++;
            }
        }
        if (cnt > n / 2) {
            win++;
        }
    }
}
0