結果

問題 No.462 6日知らずのコンピュータ
ユーザー fal_rndfal_rnd
提出日時 2016-12-13 22:57:17
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 955 bytes
コンパイル時間 2,446 ms
コンパイル使用メモリ 77,320 KB
実行使用メモリ 56,152 KB
最終ジャッジ日時 2024-11-30 01:43:06
合計ジャッジ時間 17,471 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,516 KB
testcase_01 AC 130 ms
41,260 KB
testcase_02 AC 142 ms
41,224 KB
testcase_03 AC 141 ms
41,396 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 134 ms
41,052 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 129 ms
41,160 KB
testcase_10 AC 129 ms
41,236 KB
testcase_11 AC 130 ms
41,284 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 133 ms
41,024 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 139 ms
41,200 KB
testcase_24 AC 130 ms
41,076 KB
testcase_25 AC 143 ms
41,544 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 132 ms
40,812 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 118 ms
40,056 KB
testcase_34 WA -
testcase_35 AC 132 ms
40,968 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 131 ms
41,364 KB
testcase_39 WA -
testcase_40 AC 135 ms
41,620 KB
testcase_41 AC 138 ms
41,288 KB
testcase_42 WA -
testcase_43 WA -
testcase_44 AC 132 ms
41,204 KB
testcase_45 AC 130 ms
41,228 KB
testcase_46 WA -
testcase_47 AC 137 ms
41,516 KB
testcase_48 WA -
testcase_49 AC 130 ms
41,104 KB
testcase_50 AC 130 ms
41,164 KB
testcase_51 AC 128 ms
41,324 KB
testcase_52 AC 139 ms
41,520 KB
testcase_53 AC 119 ms
40,320 KB
testcase_54 AC 129 ms
41,072 KB
testcase_55 AC 131 ms
41,068 KB
testcase_56 AC 122 ms
40,248 KB
testcase_57 AC 122 ms
39,992 KB
testcase_58 AC 132 ms
41,488 KB
testcase_59 AC 123 ms
40,072 KB
testcase_60 AC 136 ms
41,092 KB
testcase_61 AC 131 ms
41,412 KB
testcase_62 AC 130 ms
41,252 KB
testcase_63 AC 136 ms
41,376 KB
testcase_64 AC 118 ms
40,012 KB
testcase_65 AC 132 ms
41,208 KB
testcase_66 AC 138 ms
41,248 KB
testcase_67 AC 145 ms
41,600 KB
testcase_68 AC 151 ms
41,056 KB
testcase_69 AC 160 ms
41,264 KB
testcase_70 AC 154 ms
41,632 KB
testcase_71 AC 155 ms
41,256 KB
testcase_72 AC 152 ms
41,592 KB
testcase_73 AC 155 ms
41,652 KB
testcase_74 AC 147 ms
40,884 KB
testcase_75 AC 155 ms
41,252 KB
testcase_76 AC 145 ms
41,204 KB
testcase_77 AC 136 ms
41,236 KB
testcase_78 AC 140 ms
41,204 KB
testcase_79 AC 117 ms
40,264 KB
testcase_80 AC 130 ms
41,428 KB
testcase_81 AC 132 ms
41,248 KB
testcase_82 WA -
testcase_83 WA -
testcase_84 AC 116 ms
40,240 KB
testcase_85 AC 118 ms
40,008 KB
testcase_86 AC 129 ms
40,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package src;

import java.math.BigInteger;
import java.util.*;
class B{
	static Scanner s = new Scanner(System.in);
	static final int mod=1000000007;
	public static void main(String[] args){
		int n=s.nextInt();
		BigInteger[] in = new BigInteger[s.nextInt()];
		for(int i=0;i<in.length;i++)
			in[i]=s.nextBigInteger();
		Arrays.sort(in);
		{
			BigInteger b = BigInteger.ZERO;
			for(BigInteger bb:in) {
				b=b.or(bb);
				if(b.xor(bb).getLowestSetBit()!=-1) {
					System.out.println(0);
					return;
				}
			}
		}
		{
			int r=1;
			int b=0;
			for(BigInteger bb:in) {
				r*=getFactorial(bb.bitCount()-b, mod);
				b=bb.bitCount();
			}
			r*=getFactorial(n-b,mod);
			System.out.println(r);
		}
	}
	static int getFactorial(long value,int mod) {
		if(value==0||value==1)
			return 1;
		if(value==2)
			return 2;
		return g(value,value-1,mod);
	}
	static int g(long v,long i,int m) {
		if(i==2)
			return (int) ((v*2)%m);
		return g(v*i,i-1,m);
	}
}
0