結果
問題 | No.462 6日知らずのコンピュータ |
ユーザー | tamago324_pad |
提出日時 | 2016-12-23 09:51:23 |
言語 | Java21 (openjdk 21) |
結果 |
RE
|
実行時間 | - |
コード長 | 2,828 bytes |
コンパイル時間 | 3,699 ms |
コンパイル使用メモリ | 88,972 KB |
実行使用メモリ | 52,300 KB |
最終ジャッジ日時 | 2024-12-14 15:18:38 |
合計ジャッジ時間 | 10,608 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
testcase_32 | RE | - |
testcase_33 | RE | - |
testcase_34 | RE | - |
testcase_35 | RE | - |
testcase_36 | RE | - |
testcase_37 | RE | - |
testcase_38 | RE | - |
testcase_39 | RE | - |
testcase_40 | RE | - |
testcase_41 | RE | - |
testcase_42 | RE | - |
testcase_43 | RE | - |
testcase_44 | RE | - |
testcase_45 | RE | - |
testcase_46 | RE | - |
testcase_47 | RE | - |
testcase_48 | RE | - |
testcase_49 | RE | - |
testcase_50 | RE | - |
testcase_51 | RE | - |
testcase_52 | RE | - |
testcase_53 | RE | - |
testcase_54 | RE | - |
testcase_55 | RE | - |
testcase_56 | RE | - |
testcase_57 | RE | - |
testcase_58 | RE | - |
testcase_59 | RE | - |
testcase_60 | RE | - |
testcase_61 | RE | - |
testcase_62 | RE | - |
testcase_63 | RE | - |
testcase_64 | RE | - |
testcase_65 | RE | - |
testcase_66 | RE | - |
testcase_67 | RE | - |
testcase_68 | RE | - |
testcase_69 | RE | - |
testcase_70 | RE | - |
testcase_71 | RE | - |
testcase_72 | RE | - |
testcase_73 | RE | - |
testcase_74 | RE | - |
testcase_75 | RE | - |
testcase_76 | RE | - |
testcase_77 | RE | - |
testcase_78 | RE | - |
testcase_79 | RE | - |
testcase_80 | RE | - |
testcase_81 | RE | - |
testcase_82 | RE | - |
testcase_83 | RE | - |
testcase_84 | RE | - |
testcase_85 | RE | - |
testcase_86 | RE | - |
ソースコード
package q462; import java.util.ArrayList; import java.util.Collections; import java.util.List; public class Test1 { private static int patternSum = 0; public static void main(String[] args) { int n = Integer.parseInt(args[0]); int k = Integer.parseInt(args[1]); List<Integer> numList = new ArrayList<Integer>(); for(int i = 0; i < args.length - 2; i++){ // 3つ目以降を格納 numList.add(Integer.parseInt(args[i])); } if(isEnabled(numList, k, n)){ System.out.println(patternSum % ((int)Math.pow(10, 9) - 7)); }else{ System.out.println(0); } } /** * 受け取った配列が有効か * @param args 整数の文字列の配列 α1 ~ αk の配列 * @param arrLen 配列の長さ k * @param n N * @return true: 有効<br>false: 無効 */ private static boolean isEnabled(List<Integer> numList, int arrLen, int n){ // ソートする // Arrays.sort(args); // System.out.println(Arrays.toString(args)); Collections.sort(numList); int large = 0; int small = 0; // 差 int rem; // ORした結果 int orResult; boolean rtn = true; if(arrLen == 0){ // すべてのパターン数を求める patternSum = findPatternsCount((int) Math.pow(2, n)); }else{ // 0と最初の要素の間は何通りあるか求める patternSum = findPatternsCount(numList.get(0)); for(int i = 1; i < arrLen; i++){ large = numList.get(i); small = numList.get(i - 1); // ソートしたらこれいらない // if(large < small){ // // 2つの大小を確認する // int temp = large; // large = small; // small = temp; // } rem = large - small; orResult = small | rem; // 1度立ったものが下がっていなければ一致するはず if(large == orResult){ rtn = true; patternSum *= findPatternsCount(rem); }else{ rtn = false; } } // 最後の要素と(2^n - 1)の間は何通りあるか求める rem = (int) Math.pow(2, n) - large; patternSum *= findPatternsCount(rem); } return rtn; } /** * 差から2つの間のパターン数を求める * @param rem 差 * @return 差の間は何通りか */ private static int findPatternsCount(int rem){ int upBitSum = 0; int rtnFact = 1; if(rem != 0){ // 2進数に変換 String binStr = Integer.toBinaryString(rem); int strLen = binStr.length(); for(int i = 0; i < strLen; i++){ // charをintに変換 upBitSum += Character.getNumericValue(binStr.charAt(i)); } rtnFact = getFact(upBitSum); } return rtnFact; } /** * 階乗を求める * @param n 階乗を求めたい値 * @return 階乗 */ private static int getFact(int n){ if (n == 0) return 1; else // nが1以上の時 return n * getFact(n - 1); } }