結果

問題 No.133 カードゲーム
ユーザー t8m8⛄️t8m8⛄️
提出日時 2015-04-09 13:35:33
言語 Java21
(openjdk 21)
結果
AC  
実行時間 133 ms / 5,000 ms
コード長 1,560 bytes
コンパイル時間 3,514 ms
コンパイル使用メモリ 78,072 KB
実行使用メモリ 41,976 KB
最終ジャッジ日時 2024-06-25 03:29:54
合計ジャッジ時間 7,333 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
40,200 KB
testcase_01 AC 128 ms
41,436 KB
testcase_02 AC 129 ms
41,520 KB
testcase_03 AC 130 ms
41,300 KB
testcase_04 AC 127 ms
41,976 KB
testcase_05 AC 133 ms
41,480 KB
testcase_06 AC 128 ms
41,404 KB
testcase_07 AC 115 ms
41,968 KB
testcase_08 AC 117 ms
41,416 KB
testcase_09 AC 129 ms
41,916 KB
testcase_10 AC 130 ms
41,384 KB
testcase_11 AC 126 ms
41,488 KB
testcase_12 AC 128 ms
41,584 KB
testcase_13 AC 130 ms
41,368 KB
testcase_14 AC 129 ms
41,604 KB
testcase_15 AC 118 ms
41,432 KB
testcase_16 AC 129 ms
41,924 KB
testcase_17 AC 129 ms
41,248 KB
testcase_18 AC 129 ms
41,644 KB
testcase_19 AC 115 ms
40,300 KB
testcase_20 AC 125 ms
41,648 KB
testcase_21 AC 128 ms
41,376 KB
testcase_22 AC 127 ms
41,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

//No.133 カードゲーム

import java.util.*;
import java.io.*;
import static java.util.Arrays.*;
import static java.lang.Math.*;

public class No133 {
    
    static final Scanner in = new Scanner(System.in);
    static final PrintWriter out = new PrintWriter(System.out,false);

    static void solve() {
        int n = in.nextInt();
        int[] a = new int[n];
        int[] b = new int[n];
        for (int i=0; i<n; i++) a[i] = in.nextInt();
        for (int i=0; i<n; i++) b[i] = in.nextInt();
        int win = 0,game = 0;
        sort(a);
        do {
            int cnt = 0;
            for (int i=0; i<n; i++) {
                if (a[i] - b[i] > 0) cnt++;
            }
            if (cnt > n/2) win++;
            game++;
        }while(nextPermutation(a));
        out.println((double)win/game);
    }

    static boolean nextPermutation(int[] a) {
        int n = a.length, i, j;
        for (i=n-2; i>=0 && a[i]>=a[i+1]; i--);
        if (i == -1) return false;
        for (j=i+1; j<n && a[i]<a[j]; j++);
        int temp = a[i]; a[i] = a[j-1]; a[j-1] = temp;
        for (int l=i+1, r=n-1; l<r; l++,r--) {
            temp = a[l]; a[l] = a[r]; a[r] = temp;
        }
        return true;
    }

    public static void main(String[] args) {
        long start = System.currentTimeMillis();

        solve();
        out.flush();

        long end = System.currentTimeMillis();
        //trace(end-start + "ms");
        in.close();
        out.close();
    }

    static void trace(Object... o) { System.out.println(deepToString(o));}
}
0