結果

問題 No.133 カードゲーム
ユーザー tsunabittsunabit
提出日時 2020-03-04 21:06:40
言語 Java21
(openjdk 21)
結果
AC  
実行時間 171 ms / 5,000 ms
コード長 1,191 bytes
コンパイル時間 6,047 ms
コンパイル使用メモリ 79,260 KB
実行使用メモリ 42,708 KB
最終ジャッジ日時 2024-10-14 00:29:48
合計ジャッジ時間 8,461 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 164 ms
42,488 KB
testcase_01 AC 162 ms
42,368 KB
testcase_02 AC 161 ms
42,488 KB
testcase_03 AC 137 ms
41,144 KB
testcase_04 AC 164 ms
42,340 KB
testcase_05 AC 169 ms
42,576 KB
testcase_06 AC 171 ms
42,620 KB
testcase_07 AC 164 ms
42,704 KB
testcase_08 AC 166 ms
42,184 KB
testcase_09 AC 168 ms
42,708 KB
testcase_10 AC 167 ms
42,336 KB
testcase_11 AC 167 ms
42,532 KB
testcase_12 AC 153 ms
42,028 KB
testcase_13 AC 168 ms
42,404 KB
testcase_14 AC 168 ms
42,352 KB
testcase_15 AC 167 ms
42,548 KB
testcase_16 AC 153 ms
42,080 KB
testcase_17 AC 166 ms
42,520 KB
testcase_18 AC 166 ms
42,356 KB
testcase_19 AC 167 ms
42,572 KB
testcase_20 AC 168 ms
42,688 KB
testcase_21 AC 154 ms
42,032 KB
testcase_22 AC 166 ms
42,364 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
import java.math.*;

public class No133 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		String a = "";
		for(int i = 0; i < n; i++) a += sc.next();
		String b = "";
		for(int i = 0; i < n; i++) b += sc.next();
		
		ArrayList<String> al = new ArrayList<String>();
		permutation(a, "", al);
		ArrayList<String> bl = new ArrayList<String>();
		permutation(b, "", bl);
		
		int t = 0;
		int ans = 0;
		for(int i = 0; i < al.size(); i++) {
			for(int j = 0; j < al.size(); j++) {
				for(int k = 0; k < a.length(); k++) {
					if((int)al.get(i).charAt(k) > (int)bl.get(j).charAt(k)) {
						t++;
					}
				}
				if(t > n/2) ans++;
				t = 0;
			}
		}
		System.out.println((double)ans / (al.size() * bl.size()));
		
	}
	public static void permutation(String q, String ans, ArrayList<String> al){
        // Base Case
        if(q.length() <= 1) {
            al.add(ans+q);
        }
        // General Case
        else {
            for (int i = 0; i < q.length(); i++) {
                permutation(q.substring(0, i) + q.substring(i + 1), ans + q.charAt(i), al);
            }
        }
    }
}
0