結果

問題 No.462 6日知らずのコンピュータ
ユーザー tamago324_padtamago324_pad
提出日時 2016-12-25 00:23:04
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 2,830 bytes
コンパイル時間 4,363 ms
コンパイル使用メモリ 82,544 KB
実行使用メモリ 37,108 KB
最終ジャッジ日時 2024-05-08 13:56:15
合計ジャッジ時間 10,729 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 -
権限があれば一括ダウンロードができます

ソースコード

diff #

package q462;

import java.util.ArrayList;
import java.util.Collections;
import java.util.List;

public class Test1 {


	private static long patternSum = 0;

	public static void main(String[] args) {

		int n = Integer.parseInt(args[0]);
		int k = Integer.parseInt(args[1]);

		List<Long> numList = new ArrayList<Long>();

		for(int i = 2; i < args.length; i++){
			// 3つ目以降を格納
			numList.add(Long.parseLong(args[i]));
		}

		if(isEnabled(numList, k, n)){
			System.out.println(patternSum % ((long)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<Long> numList, int arrLen, int n){

		// ソートする
//		Arrays.sort(args);
//		System.out.println(Arrays.toString(args));
		Collections.sort(numList);

		long large = 0;
		long small = 0;

		// 差
		long rem;

		// ORした結果
		long orResult;

		boolean rtn = true;

		if(arrLen == 0){
			// すべてのパターン数を求める

			patternSum = findPatternsCount((int) Math.pow(2, n) - 1);
		}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) - 1 - large;
			patternSum *= findPatternsCount(rem);
		}
		return rtn;
	}

	/**
	 * 差から2つの間のパターン数を求める
	 * @param rem 差
	 * @return 差の間は何通りか
	 */
	private static long findPatternsCount(long rem){

		int upBitSum = 0;
		long rtnFact = 1;
		if(rem != 0){
			// 2進数に変換
			String binStr = Long.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 long getFact(int n){
		if (n == 0)
            return 1;
        else // nが1以上の時
            return n * getFact(n - 1);
	}
}
0