結果

問題 No.462 6日知らずのコンピュータ
ユーザー Daigo HIROOKADaigo HIROOKA
提出日時 2018-06-23 00:09:40
言語 Java21
(openjdk 21)
結果
AC  
実行時間 138 ms / 2,000 ms
コード長 917 bytes
コンパイル時間 4,070 ms
コンパイル使用メモリ 77,696 KB
実行使用メモリ 54,444 KB
最終ジャッジ日時 2024-06-30 18:10:57
合計ジャッジ時間 17,205 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
53,836 KB
testcase_01 AC 117 ms
52,860 KB
testcase_02 AC 136 ms
54,252 KB
testcase_03 AC 117 ms
52,540 KB
testcase_04 AC 117 ms
52,972 KB
testcase_05 AC 129 ms
53,792 KB
testcase_06 AC 130 ms
54,024 KB
testcase_07 AC 125 ms
53,632 KB
testcase_08 AC 127 ms
53,692 KB
testcase_09 AC 124 ms
54,060 KB
testcase_10 AC 120 ms
53,916 KB
testcase_11 AC 118 ms
52,844 KB
testcase_12 AC 111 ms
53,348 KB
testcase_13 AC 119 ms
53,124 KB
testcase_14 AC 134 ms
54,016 KB
testcase_15 AC 117 ms
53,164 KB
testcase_16 AC 127 ms
54,352 KB
testcase_17 AC 128 ms
54,444 KB
testcase_18 AC 127 ms
54,052 KB
testcase_19 AC 125 ms
54,104 KB
testcase_20 AC 132 ms
54,184 KB
testcase_21 AC 129 ms
53,720 KB
testcase_22 AC 127 ms
54,168 KB
testcase_23 AC 134 ms
53,768 KB
testcase_24 AC 111 ms
52,876 KB
testcase_25 AC 131 ms
53,824 KB
testcase_26 AC 127 ms
53,780 KB
testcase_27 AC 124 ms
54,048 KB
testcase_28 AC 120 ms
54,080 KB
testcase_29 AC 110 ms
52,556 KB
testcase_30 AC 113 ms
52,868 KB
testcase_31 AC 126 ms
53,736 KB
testcase_32 AC 131 ms
54,012 KB
testcase_33 AC 127 ms
54,044 KB
testcase_34 AC 128 ms
54,012 KB
testcase_35 AC 130 ms
54,028 KB
testcase_36 AC 113 ms
52,680 KB
testcase_37 AC 125 ms
53,900 KB
testcase_38 AC 129 ms
54,216 KB
testcase_39 AC 121 ms
53,952 KB
testcase_40 AC 129 ms
53,704 KB
testcase_41 AC 138 ms
54,224 KB
testcase_42 AC 113 ms
52,688 KB
testcase_43 AC 129 ms
54,136 KB
testcase_44 AC 117 ms
52,892 KB
testcase_45 AC 125 ms
53,668 KB
testcase_46 AC 127 ms
54,088 KB
testcase_47 AC 124 ms
53,976 KB
testcase_48 AC 120 ms
54,048 KB
testcase_49 AC 123 ms
54,172 KB
testcase_50 AC 119 ms
54,052 KB
testcase_51 AC 127 ms
53,968 KB
testcase_52 AC 126 ms
54,008 KB
testcase_53 AC 123 ms
54,012 KB
testcase_54 AC 125 ms
53,804 KB
testcase_55 AC 128 ms
54,068 KB
testcase_56 AC 129 ms
54,008 KB
testcase_57 AC 131 ms
53,748 KB
testcase_58 AC 129 ms
53,924 KB
testcase_59 AC 128 ms
54,312 KB
testcase_60 AC 135 ms
54,140 KB
testcase_61 AC 126 ms
53,964 KB
testcase_62 AC 125 ms
54,232 KB
testcase_63 AC 128 ms
54,268 KB
testcase_64 AC 118 ms
54,008 KB
testcase_65 AC 122 ms
53,580 KB
testcase_66 AC 128 ms
53,892 KB
testcase_67 AC 132 ms
54,032 KB
testcase_68 AC 128 ms
53,996 KB
testcase_69 AC 137 ms
54,300 KB
testcase_70 AC 133 ms
53,692 KB
testcase_71 AC 130 ms
53,820 KB
testcase_72 AC 125 ms
54,092 KB
testcase_73 AC 127 ms
54,308 KB
testcase_74 AC 127 ms
54,212 KB
testcase_75 AC 122 ms
53,004 KB
testcase_76 AC 127 ms
53,652 KB
testcase_77 AC 131 ms
54,132 KB
testcase_78 AC 136 ms
54,396 KB
testcase_79 AC 129 ms
54,068 KB
testcase_80 AC 129 ms
54,080 KB
testcase_81 AC 129 ms
54,032 KB
testcase_82 AC 129 ms
54,224 KB
testcase_83 AC 124 ms
53,680 KB
testcase_84 AC 120 ms
53,752 KB
testcase_85 AC 124 ms
53,920 KB
testcase_86 AC 130 ms
54,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class No462{
	static long mod = (long)Math.pow(10, 9) + 7;
	
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);

		int N = sc.nextInt();
		int k = sc.nextInt();
		if(k == 0){
			System.out.println(fact(N));
			return;
		}

		long[] a = new long[k+1];
		for(int i = 0; i < k; i++){
			a[i] = sc.nextLong();
		}
		a[k] = (long)Math.pow(2, N) - 1;
		Arrays.sort(a);
		// System.out.println(Arrays.toString(a));
		
		for(int i = 1; i < k+1; i++){
			if((a[i] & a[i-1]) != a[i-1]){
				System.out.println(0);
				return;
			}
		}

		long ans = fact(Long.bitCount(a[0]));
		for(int i = 1; i < k+1; i++){
			long xor = a[i]^a[i-1];
			ans *= fact(Long.bitCount(xor));
			ans %= mod;
		}
		System.out.println(ans);
	}

	private static long fact(long n){
		if(n == 0) return 1;
		long ret = 1;
		for(long i = n; i > 0; i--){
				ret = ret*i%mod;
		}
		return ret;
	}
}
0