結果

問題 No.133 カードゲーム
ユーザー ika3ika3
提出日時 2019-02-25 15:54:14
言語 Java
(openjdk 23)
結果
AC  
実行時間 145 ms / 5,000 ms
コード長 957 bytes
コンパイル時間 4,773 ms
コンパイル使用メモリ 77,372 KB
実行使用メモリ 41,316 KB
最終ジャッジ日時 2024-12-26 05:07:00
合計ジャッジ時間 8,932 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
41,244 KB
testcase_01 AC 135 ms
40,904 KB
testcase_02 AC 135 ms
41,260 KB
testcase_03 AC 122 ms
40,144 KB
testcase_04 AC 130 ms
41,180 KB
testcase_05 AC 124 ms
40,252 KB
testcase_06 AC 134 ms
41,116 KB
testcase_07 AC 137 ms
40,996 KB
testcase_08 AC 121 ms
40,004 KB
testcase_09 AC 139 ms
41,000 KB
testcase_10 AC 134 ms
41,316 KB
testcase_11 AC 131 ms
40,892 KB
testcase_12 AC 127 ms
41,124 KB
testcase_13 AC 126 ms
40,792 KB
testcase_14 AC 135 ms
41,164 KB
testcase_15 AC 130 ms
40,948 KB
testcase_16 AC 131 ms
40,940 KB
testcase_17 AC 129 ms
41,164 KB
testcase_18 AC 122 ms
40,228 KB
testcase_19 AC 128 ms
40,464 KB
testcase_20 AC 130 ms
41,020 KB
testcase_21 AC 141 ms
41,108 KB
testcase_22 AC 145 ms
41,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class Main{
	static int[] a1;
	static int[] b1;
	static double sum1;
	static boolean[] a2;
	static int n;
	static int[] a3;
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		n = sc.nextInt();
		sum1=0;
		a1=new int[n];
		b1=new int[n];
		a2=new boolean[n];
		a3=new int[n];
		double sum=1;
		for(int i = 0; i<n; i++){
			int a = sc.nextInt();
			a1[i]=a;
		}
		for(int i = 0; i<n; i++){
			int b = sc.nextInt();
			b1[i]=b;
		}
		for(int i=2; i<=n; i++){
			sum*=i;
		}
		dfs(n-1);
		System.out.println(sum1/sum);
	}
	static void dfs(int k){
		for(int i=0; i<n; i++){
			if(!a2[i]){
				a3[k]=a1[i];
				a2[i]=true;
				dfs(k-1);
				a2[i]=false;
			}
		}
		if(k==0){
			if(judge(a3)){
				sum1++;
			}
		}
	} 
	
	static boolean judge(int[] c){
		int win=0;
		for(int i = 0; i<n; i++){
			if(c[i]>b1[i]){
				win++;
			}
		}
		if(win>(n/2)){
			return true;
		}else{
			return false;
		}
	}
}
0