結果

問題 No.462 6日知らずのコンピュータ
ユーザー tamago324_padtamago324_pad
提出日時 2016-12-25 01:23:16
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 2,736 bytes
コンパイル時間 3,849 ms
コンパイル使用メモリ 78,780 KB
実行使用メモリ 56,252 KB
最終ジャッジ日時 2024-12-14 18:45:55
合計ジャッジ時間 18,099 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
53,952 KB
testcase_01 AC 135 ms
53,900 KB
testcase_02 AC 145 ms
53,804 KB
testcase_03 AC 146 ms
54,020 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 136 ms
54,016 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 136 ms
53,928 KB
testcase_10 AC 135 ms
53,772 KB
testcase_11 AC 134 ms
54,076 KB
testcase_12 AC 135 ms
53,976 KB
testcase_13 AC 138 ms
54,136 KB
testcase_14 AC 143 ms
53,948 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 136 ms
54,012 KB
testcase_19 AC 136 ms
53,816 KB
testcase_20 AC 140 ms
54,064 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 144 ms
53,828 KB
testcase_24 AC 134 ms
53,980 KB
testcase_25 AC 146 ms
53,924 KB
testcase_26 AC 141 ms
54,304 KB
testcase_27 AC 137 ms
54,248 KB
testcase_28 AC 120 ms
52,964 KB
testcase_29 AC 139 ms
54,044 KB
testcase_30 AC 136 ms
54,000 KB
testcase_31 WA -
testcase_32 AC 122 ms
52,912 KB
testcase_33 AC 138 ms
53,900 KB
testcase_34 WA -
testcase_35 AC 136 ms
54,144 KB
testcase_36 AC 140 ms
53,988 KB
testcase_37 WA -
testcase_38 AC 137 ms
53,968 KB
testcase_39 WA -
testcase_40 AC 141 ms
54,020 KB
testcase_41 AC 142 ms
53,944 KB
testcase_42 AC 140 ms
54,244 KB
testcase_43 WA -
testcase_44 AC 139 ms
53,952 KB
testcase_45 AC 134 ms
53,820 KB
testcase_46 AC 140 ms
53,780 KB
testcase_47 AC 132 ms
53,060 KB
testcase_48 AC 142 ms
53,840 KB
testcase_49 AC 135 ms
53,788 KB
testcase_50 AC 125 ms
53,008 KB
testcase_51 AC 137 ms
54,060 KB
testcase_52 AC 143 ms
54,036 KB
testcase_53 AC 124 ms
54,372 KB
testcase_54 AC 123 ms
52,764 KB
testcase_55 AC 137 ms
54,044 KB
testcase_56 AC 143 ms
53,780 KB
testcase_57 AC 141 ms
53,900 KB
testcase_58 AC 138 ms
54,004 KB
testcase_59 AC 142 ms
53,996 KB
testcase_60 AC 141 ms
54,300 KB
testcase_61 AC 122 ms
52,940 KB
testcase_62 WA -
testcase_63 AC 127 ms
52,912 KB
testcase_64 AC 135 ms
53,680 KB
testcase_65 AC 136 ms
54,048 KB
testcase_66 AC 140 ms
54,172 KB
testcase_67 AC 143 ms
53,944 KB
testcase_68 AC 141 ms
54,164 KB
testcase_69 AC 133 ms
53,040 KB
testcase_70 AC 139 ms
53,776 KB
testcase_71 AC 144 ms
53,940 KB
testcase_72 AC 139 ms
53,816 KB
testcase_73 AC 141 ms
53,724 KB
testcase_74 AC 124 ms
52,692 KB
testcase_75 AC 143 ms
53,844 KB
testcase_76 AC 137 ms
53,820 KB
testcase_77 AC 138 ms
53,876 KB
testcase_78 AC 146 ms
54,032 KB
testcase_79 AC 133 ms
54,016 KB
testcase_80 AC 137 ms
53,956 KB
testcase_81 AC 135 ms
53,672 KB
testcase_82 WA -
testcase_83 WA -
testcase_84 AC 135 ms
53,672 KB
testcase_85 AC 136 ms
53,768 KB
testcase_86 AC 136 ms
53,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package q462;

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

public class Test1 {


	private static long patternSum = 0;
	private static long RESULT_THEN_DIV = (long)(Math.pow(10, 9) + 7);

	public static void main(String[] args) {

		Scanner scaner = new Scanner(System.in);

		int n = scaner.nextInt();
		int k = scaner.nextInt();

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

		for(int i = 0; i < k; i++){
			// 3つ目以降を格納
			numList.add(scaner.nextLong());
		}

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

				rem = large - small;

				orResult = small | rem;

				// 1度立ったものが下がっていなければ一致するはず
				if(large == orResult){
					rtn = true;
					patternSum *= findPatternsCount(rem);
				}else{
					rtn = false;
				}
			}

			// 最後の要素と(2^n - 1)の間は何通りあるか求める
			rem = (long) 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