結果

問題 No.462 6日知らずのコンピュータ
ユーザー uafr_csuafr_cs
提出日時 2017-11-11 07:17:25
言語 Java21
(openjdk 21)
結果
AC  
実行時間 133 ms / 2,000 ms
コード長 1,259 bytes
コンパイル時間 1,972 ms
コンパイル使用メモリ 78,116 KB
実行使用メモリ 54,480 KB
最終ジャッジ日時 2024-05-03 15:57:59
合計ジャッジ時間 13,794 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
53,944 KB
testcase_01 AC 101 ms
52,900 KB
testcase_02 AC 121 ms
54,292 KB
testcase_03 AC 119 ms
53,760 KB
testcase_04 AC 116 ms
53,096 KB
testcase_05 AC 125 ms
54,148 KB
testcase_06 AC 123 ms
54,076 KB
testcase_07 AC 117 ms
54,100 KB
testcase_08 AC 105 ms
52,812 KB
testcase_09 AC 102 ms
52,912 KB
testcase_10 AC 111 ms
54,084 KB
testcase_11 AC 104 ms
54,480 KB
testcase_12 AC 113 ms
54,160 KB
testcase_13 AC 107 ms
52,660 KB
testcase_14 AC 111 ms
53,120 KB
testcase_15 AC 106 ms
54,428 KB
testcase_16 AC 114 ms
53,508 KB
testcase_17 AC 118 ms
54,192 KB
testcase_18 AC 101 ms
53,128 KB
testcase_19 AC 114 ms
53,804 KB
testcase_20 AC 122 ms
54,324 KB
testcase_21 AC 121 ms
53,880 KB
testcase_22 AC 109 ms
52,908 KB
testcase_23 AC 119 ms
53,812 KB
testcase_24 AC 115 ms
53,756 KB
testcase_25 AC 118 ms
53,880 KB
testcase_26 AC 116 ms
53,952 KB
testcase_27 AC 110 ms
54,232 KB
testcase_28 AC 110 ms
54,036 KB
testcase_29 AC 108 ms
52,780 KB
testcase_30 AC 118 ms
54,320 KB
testcase_31 AC 126 ms
53,956 KB
testcase_32 AC 121 ms
54,212 KB
testcase_33 AC 127 ms
54,192 KB
testcase_34 AC 118 ms
53,024 KB
testcase_35 AC 122 ms
54,200 KB
testcase_36 AC 123 ms
54,260 KB
testcase_37 AC 124 ms
54,316 KB
testcase_38 AC 113 ms
53,568 KB
testcase_39 AC 107 ms
53,364 KB
testcase_40 AC 118 ms
54,080 KB
testcase_41 AC 133 ms
54,088 KB
testcase_42 AC 125 ms
53,852 KB
testcase_43 AC 109 ms
52,916 KB
testcase_44 AC 128 ms
54,220 KB
testcase_45 AC 117 ms
54,068 KB
testcase_46 AC 117 ms
54,224 KB
testcase_47 AC 108 ms
53,112 KB
testcase_48 AC 114 ms
53,564 KB
testcase_49 AC 116 ms
54,016 KB
testcase_50 AC 109 ms
53,496 KB
testcase_51 AC 104 ms
52,928 KB
testcase_52 AC 114 ms
52,868 KB
testcase_53 AC 119 ms
53,260 KB
testcase_54 AC 117 ms
54,088 KB
testcase_55 AC 120 ms
52,840 KB
testcase_56 AC 122 ms
54,324 KB
testcase_57 AC 103 ms
52,460 KB
testcase_58 AC 112 ms
53,728 KB
testcase_59 AC 122 ms
54,200 KB
testcase_60 AC 123 ms
54,236 KB
testcase_61 AC 111 ms
54,004 KB
testcase_62 AC 113 ms
53,900 KB
testcase_63 AC 116 ms
54,224 KB
testcase_64 AC 114 ms
54,168 KB
testcase_65 AC 109 ms
53,216 KB
testcase_66 AC 106 ms
52,868 KB
testcase_67 AC 120 ms
54,272 KB
testcase_68 AC 133 ms
54,224 KB
testcase_69 AC 128 ms
54,072 KB
testcase_70 AC 116 ms
53,048 KB
testcase_71 AC 116 ms
52,932 KB
testcase_72 AC 114 ms
54,004 KB
testcase_73 AC 103 ms
52,732 KB
testcase_74 AC 107 ms
52,716 KB
testcase_75 AC 115 ms
53,172 KB
testcase_76 AC 110 ms
53,128 KB
testcase_77 AC 116 ms
53,908 KB
testcase_78 AC 111 ms
53,188 KB
testcase_79 AC 105 ms
53,000 KB
testcase_80 AC 115 ms
53,972 KB
testcase_81 AC 101 ms
52,876 KB
testcase_82 AC 115 ms
53,892 KB
testcase_83 AC 117 ms
54,076 KB
testcase_84 AC 115 ms
54,100 KB
testcase_85 AC 102 ms
54,024 KB
testcase_86 AC 113 ms
54,460 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.LinkedList;
import java.util.Scanner;

public class Main {
	
	public static long MOD = 1000000007;
	
	public static long fact(long N){
		long ret = 1;
		for(long i = 1; i <= N; i++){ 
			ret *= i;
			ret %= MOD;
		}
		return ret;
	}
	
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		
		final int N = sc.nextInt();
		final int k = sc.nextInt();
		
		// k = 0 の時は N bit なので N! 個の立て方がある 
		if(k == 0){
			System.out.println(fact(N));
			return;
		}
		
		// k >= 1 の時は
		// ソートするとトポロジカル順序になると思っていた => 実際そう
		// 含む数列は最後で終わりじゃなくて (1 << N) - 1 まで含む事を失念していた
		long[] as = new long[k + 1];
		for(int i = 0; i < k; i++){
			as[i] = sc.nextLong();
		}
		as[k] =(1l << N) - 1;
		
		//*
		Arrays.sort(as);
		
		for(int i = 1; i <= k; i++){
			if((as[i] & as[i - 1]) != as[i - 1]){
				System.out.println(0);
				return;
			}
		}
		
		long answer = fact(Long.bitCount(as[0]));
		for(int i = 1; i <= k; i++){
			final long xor = as[i] ^ as[i - 1];
			answer *= fact(Long.bitCount(xor));
			answer %= MOD;
		}
		
		System.out.println(answer);
		//*/
	}
}
0