結果
問題 | No.133 カードゲーム |
ユーザー | Oland |
提出日時 | 2018-11-07 15:46:30 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 138 ms / 5,000 ms |
コード長 | 1,448 bytes |
コンパイル時間 | 2,810 ms |
コンパイル使用メモリ | 77,944 KB |
実行使用メモリ | 41,808 KB |
最終ジャッジ日時 | 2024-11-20 20:44:16 |
合計ジャッジ時間 | 6,293 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 130 ms
41,280 KB |
testcase_01 | AC | 134 ms
41,416 KB |
testcase_02 | AC | 134 ms
41,400 KB |
testcase_03 | AC | 136 ms
41,096 KB |
testcase_04 | AC | 135 ms
41,524 KB |
testcase_05 | AC | 136 ms
41,728 KB |
testcase_06 | AC | 134 ms
41,704 KB |
testcase_07 | AC | 133 ms
41,308 KB |
testcase_08 | AC | 135 ms
41,600 KB |
testcase_09 | AC | 133 ms
41,212 KB |
testcase_10 | AC | 136 ms
41,236 KB |
testcase_11 | AC | 125 ms
40,156 KB |
testcase_12 | AC | 138 ms
41,192 KB |
testcase_13 | AC | 135 ms
41,252 KB |
testcase_14 | AC | 135 ms
41,008 KB |
testcase_15 | AC | 136 ms
41,416 KB |
testcase_16 | AC | 136 ms
41,408 KB |
testcase_17 | AC | 137 ms
41,728 KB |
testcase_18 | AC | 134 ms
41,688 KB |
testcase_19 | AC | 137 ms
41,808 KB |
testcase_20 | AC | 136 ms
41,564 KB |
testcase_21 | AC | 137 ms
41,464 KB |
testcase_22 | AC | 136 ms
41,096 KB |
ソースコード
import java.io.File; import java.io.IOException; import java.util.*; public class Main { public static void main(String[] args) throws IOException { //File file = new File("input.txt"); //Scanner sc = new Scanner(file); Scanner sc = new Scanner(System.in); int N = sc.nextInt(); int[] A = new int[N]; int[] B = new int[N]; for(int i = 0; i < N; i++) A[i] = sc.nextInt(); for(int i = 0; i < N; i++) B[i] = sc.nextInt(); ArrayList<Integer> list = new ArrayList<Integer>(); int[] d = dfs(list, A, B, N); //System.out.println(d[0] + " " + d[1] + " "); System.out.println((1.0 * d[0] / d[1])); } public static int[] dfs(ArrayList<Integer> cardIndexList, int[] A, int[] B, int N){ int winNum = 0; int battleNum = 0; if(cardIndexList.size() == N){ int count = 0; for(int i = 0; i < N; i++){ //System.out.print(A[cardIndexList.get(i)]); if(A[cardIndexList.get(i)] > B[i]) count++; if(A[cardIndexList.get(i)] < B[i]) count--; } //System.out.println(); battleNum = 1; if(count >= 1) winNum = 1; else winNum = 0; }else{ for(int i = 0; i < N; i++){ if(!cardIndexList.contains(i)){ ArrayList<Integer> nextList = new ArrayList<Integer>(); for(Integer m : cardIndexList) nextList.add(m); nextList.add(i); int[] d = dfs(nextList, A, B, N); winNum += d[0]; battleNum += d[1]; } } } int[] d = {winNum, battleNum}; return d; } }