結果

問題 No.133 カードゲーム
ユーザー kenji_shioyakenji_shioya
提出日時 2016-07-03 18:40:49
言語 Java21
(openjdk 21)
結果
AC  
実行時間 133 ms / 5,000 ms
コード長 1,151 bytes
コンパイル時間 3,545 ms
コンパイル使用メモリ 78,848 KB
実行使用メモリ 41,448 KB
最終ジャッジ日時 2024-06-25 03:43:59
合計ジャッジ時間 7,405 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
40,300 KB
testcase_01 AC 131 ms
41,128 KB
testcase_02 AC 132 ms
41,256 KB
testcase_03 AC 131 ms
41,380 KB
testcase_04 AC 118 ms
40,076 KB
testcase_05 AC 132 ms
41,328 KB
testcase_06 AC 119 ms
39,968 KB
testcase_07 AC 119 ms
39,976 KB
testcase_08 AC 132 ms
41,176 KB
testcase_09 AC 132 ms
41,056 KB
testcase_10 AC 133 ms
41,224 KB
testcase_11 AC 117 ms
39,848 KB
testcase_12 AC 130 ms
40,804 KB
testcase_13 AC 129 ms
40,976 KB
testcase_14 AC 128 ms
41,408 KB
testcase_15 AC 131 ms
41,064 KB
testcase_16 AC 116 ms
40,388 KB
testcase_17 AC 130 ms
41,356 KB
testcase_18 AC 130 ms
41,448 KB
testcase_19 AC 130 ms
40,976 KB
testcase_20 AC 129 ms
40,972 KB
testcase_21 AC 130 ms
41,324 KB
testcase_22 AC 130 ms
41,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Exercise143{
  public static double winGames;
  public static void main (String[] args){

    Scanner sc = new Scanner(System.in);

    int n = sc.nextInt();
    int[] a = new int[n];
    ArrayList<Integer> b = new ArrayList<Integer>();
    for(int i = 0; i < n; i++){
      a[i] = sc.nextInt();
    }
    for(int i = 0; i < n; i++){
      b.add(sc.nextInt());
    }
    double sumGames = 1;
    winGames = 0;

    for(int i = 0; i < n; i++){
      sumGames *= n - i;
    }
    permute(n, a, b, 0);

    System.out.println(winGames / sumGames);
  }
  private static void permute (int n, int[] a, ArrayList<Integer> b, int k){
    for(int i = k; i < b.size(); i++){
      Collections.swap(b, i, k);
      permute(n, a, b, k + 1);
      Collections.swap(b, k, i);
    }
    if(k == b.size() - 1){
      if(judge(n, a, b)){
        winGames++;
      }
    }
  }
  private static boolean judge (int n, int[] a, ArrayList<Integer> b){
    int win = 0;
    for(int i = 0; i < n; i++){
      if(a[i] > b.get(i)){
        win++;
      }
    }
    if(win > n / 2){
      return true;
    }else{
      return false;
    }
  }
}
0