結果

問題 No.462 6日知らずのコンピュータ
ユーザー uafr_csuafr_cs
提出日時 2017-11-11 07:17:25
言語 Java21
(openjdk 21)
結果
AC  
実行時間 148 ms / 2,000 ms
コード長 1,259 bytes
コンパイル時間 2,255 ms
コンパイル使用メモリ 78,564 KB
実行使用メモリ 41,764 KB
最終ジャッジ日時 2024-11-24 18:10:25
合計ジャッジ時間 16,684 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
41,340 KB
testcase_01 AC 134 ms
41,216 KB
testcase_02 AC 144 ms
41,480 KB
testcase_03 AC 148 ms
41,400 KB
testcase_04 AC 135 ms
41,168 KB
testcase_05 AC 133 ms
41,264 KB
testcase_06 AC 138 ms
41,096 KB
testcase_07 AC 135 ms
41,528 KB
testcase_08 AC 135 ms
41,420 KB
testcase_09 AC 136 ms
41,480 KB
testcase_10 AC 137 ms
41,720 KB
testcase_11 AC 136 ms
41,316 KB
testcase_12 AC 137 ms
41,352 KB
testcase_13 AC 137 ms
41,456 KB
testcase_14 AC 141 ms
41,288 KB
testcase_15 AC 136 ms
41,296 KB
testcase_16 AC 136 ms
41,096 KB
testcase_17 AC 139 ms
41,228 KB
testcase_18 AC 132 ms
41,420 KB
testcase_19 AC 136 ms
41,380 KB
testcase_20 AC 139 ms
41,288 KB
testcase_21 AC 138 ms
41,268 KB
testcase_22 AC 138 ms
41,372 KB
testcase_23 AC 142 ms
41,264 KB
testcase_24 AC 135 ms
41,528 KB
testcase_25 AC 146 ms
41,228 KB
testcase_26 AC 142 ms
41,304 KB
testcase_27 AC 137 ms
41,392 KB
testcase_28 AC 134 ms
41,344 KB
testcase_29 AC 140 ms
41,332 KB
testcase_30 AC 141 ms
41,268 KB
testcase_31 AC 136 ms
41,352 KB
testcase_32 AC 137 ms
41,672 KB
testcase_33 AC 140 ms
41,516 KB
testcase_34 AC 139 ms
41,356 KB
testcase_35 AC 136 ms
41,568 KB
testcase_36 AC 139 ms
41,128 KB
testcase_37 AC 138 ms
41,424 KB
testcase_38 AC 137 ms
41,116 KB
testcase_39 AC 137 ms
41,412 KB
testcase_40 AC 127 ms
40,072 KB
testcase_41 AC 145 ms
41,256 KB
testcase_42 AC 138 ms
41,368 KB
testcase_43 AC 134 ms
41,212 KB
testcase_44 AC 138 ms
41,136 KB
testcase_45 AC 136 ms
41,260 KB
testcase_46 AC 142 ms
41,488 KB
testcase_47 AC 144 ms
41,360 KB
testcase_48 AC 142 ms
41,360 KB
testcase_49 AC 137 ms
41,372 KB
testcase_50 AC 139 ms
41,504 KB
testcase_51 AC 138 ms
41,292 KB
testcase_52 AC 142 ms
41,516 KB
testcase_53 AC 140 ms
41,556 KB
testcase_54 AC 136 ms
41,644 KB
testcase_55 AC 139 ms
41,472 KB
testcase_56 AC 143 ms
41,408 KB
testcase_57 AC 141 ms
41,304 KB
testcase_58 AC 137 ms
41,548 KB
testcase_59 AC 141 ms
41,444 KB
testcase_60 AC 142 ms
41,228 KB
testcase_61 AC 137 ms
41,276 KB
testcase_62 AC 135 ms
41,136 KB
testcase_63 AC 139 ms
41,512 KB
testcase_64 AC 134 ms
41,216 KB
testcase_65 AC 126 ms
40,036 KB
testcase_66 AC 143 ms
41,520 KB
testcase_67 AC 143 ms
41,508 KB
testcase_68 AC 142 ms
41,484 KB
testcase_69 AC 145 ms
41,344 KB
testcase_70 AC 140 ms
41,364 KB
testcase_71 AC 141 ms
41,392 KB
testcase_72 AC 139 ms
41,416 KB
testcase_73 AC 141 ms
41,144 KB
testcase_74 AC 137 ms
41,612 KB
testcase_75 AC 142 ms
41,492 KB
testcase_76 AC 136 ms
41,336 KB
testcase_77 AC 139 ms
41,764 KB
testcase_78 AC 144 ms
41,484 KB
testcase_79 AC 132 ms
41,212 KB
testcase_80 AC 134 ms
41,204 KB
testcase_81 AC 134 ms
41,288 KB
testcase_82 AC 132 ms
41,048 KB
testcase_83 AC 135 ms
41,260 KB
testcase_84 AC 121 ms
40,020 KB
testcase_85 AC 137 ms
41,284 KB
testcase_86 AC 133 ms
40,940 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