結果

問題 No.133 カードゲーム
ユーザー ika3ika3
提出日時 2019-02-25 15:54:14
言語 Java21
(openjdk 21)
結果
AC  
実行時間 143 ms / 5,000 ms
コード長 957 bytes
コンパイル時間 2,259 ms
コンパイル使用メモリ 77,500 KB
実行使用メモリ 41,784 KB
最終ジャッジ日時 2024-06-07 20:08:59
合計ジャッジ時間 6,508 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
41,496 KB
testcase_01 AC 140 ms
41,724 KB
testcase_02 AC 139 ms
41,372 KB
testcase_03 AC 138 ms
41,324 KB
testcase_04 AC 139 ms
41,784 KB
testcase_05 AC 140 ms
41,392 KB
testcase_06 AC 139 ms
41,128 KB
testcase_07 AC 141 ms
41,728 KB
testcase_08 AC 141 ms
41,336 KB
testcase_09 AC 139 ms
41,480 KB
testcase_10 AC 138 ms
41,588 KB
testcase_11 AC 139 ms
41,784 KB
testcase_12 AC 137 ms
41,336 KB
testcase_13 AC 137 ms
41,516 KB
testcase_14 AC 137 ms
41,236 KB
testcase_15 AC 143 ms
41,252 KB
testcase_16 AC 138 ms
41,596 KB
testcase_17 AC 139 ms
41,332 KB
testcase_18 AC 142 ms
41,640 KB
testcase_19 AC 138 ms
41,312 KB
testcase_20 AC 137 ms
41,284 KB
testcase_21 AC 137 ms
41,508 KB
testcase_22 AC 137 ms
41,216 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