結果

問題 No.462 6日知らずのコンピュータ
ユーザー TententenTententen
提出日時 2020-12-14 18:15:49
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,330 bytes
コンパイル時間 3,019 ms
コンパイル使用メモリ 76,956 KB
実行使用メモリ 41,584 KB
最終ジャッジ日時 2024-09-20 00:50:48
合計ジャッジ時間 15,256 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 107 ms
39,692 KB
testcase_01 AC 108 ms
40,096 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 116 ms
41,296 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 103 ms
40,080 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 115 ms
41,304 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 AC 118 ms
41,236 KB
testcase_50 AC 123 ms
41,556 KB
testcase_51 AC 121 ms
41,224 KB
testcase_52 AC 127 ms
41,084 KB
testcase_53 AC 119 ms
41,584 KB
testcase_54 AC 106 ms
40,172 KB
testcase_55 AC 116 ms
41,288 KB
testcase_56 AC 101 ms
39,444 KB
testcase_57 AC 115 ms
41,032 KB
testcase_58 AC 115 ms
41,296 KB
testcase_59 AC 119 ms
41,472 KB
testcase_60 AC 119 ms
41,360 KB
testcase_61 AC 106 ms
40,164 KB
testcase_62 AC 122 ms
41,440 KB
testcase_63 AC 126 ms
41,280 KB
testcase_64 AC 110 ms
39,872 KB
testcase_65 AC 119 ms
40,972 KB
testcase_66 AC 114 ms
41,168 KB
testcase_67 AC 115 ms
41,080 KB
testcase_68 AC 113 ms
41,068 KB
testcase_69 AC 119 ms
41,192 KB
testcase_70 AC 120 ms
41,276 KB
testcase_71 AC 117 ms
41,152 KB
testcase_72 AC 116 ms
41,124 KB
testcase_73 AC 110 ms
39,776 KB
testcase_74 AC 119 ms
41,324 KB
testcase_75 AC 116 ms
40,964 KB
testcase_76 AC 118 ms
41,100 KB
testcase_77 AC 121 ms
41,296 KB
testcase_78 AC 108 ms
40,924 KB
testcase_79 AC 113 ms
41,020 KB
testcase_80 WA -
testcase_81 AC 100 ms
40,064 KB
testcase_82 WA -
testcase_83 WA -
testcase_84 AC 103 ms
40,040 KB
testcase_85 AC 116 ms
40,992 KB
testcase_86 AC 103 ms
40,100 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    static final int MOD = 1000000007;
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int k = sc.nextInt();
		long[] pops = new long[n + 1];
		Arrays.fill(pops, -1);
		pops[0] = 0;
		pops[n] = pow(2, n) - 1;
		for (int i = 0; i < k; i++) {
		    long x = sc.nextLong();
		    if (pops[getPop(x)] != -1) {
		        System.out.println(0);
		        return;
		    }
		    pops[getPop(x)] = x;
		}
		long prev = pops[0];
		long ans = 1;
		int count = 0;
		for (int i = 1; i <= n; i++) {
		    if (pops[i] == -1) {
		        count++;
		        continue;
		    }
		    if ((prev & pops[i]) != prev) {
		        System.out.println(0);
		        return;
		    }
		    ans *= kaijo(count + 1);
		    count = 0;
		    prev = pops[i];
		}
		System.out.println(ans);
	}
	
	static int getPop(long x) {
	    int count = 0;
	    while (x > 0) {
	        count += x % 2;
	        x /= 2;
	    }
	    return count;
	}
	
	static long pow(long x, int p) {
	    if (p == 0) {
	        return 1;
	    } else if (p % 2 == 0) {
	        return pow(x * x, p / 2);
	    } else {
	        return x * pow(x, p - 1);
	    }
	}
	
	static long kaijo(int x) {
	    if (x == 0) {
	        return 1;
	    } else {
	        return x * kaijo(x - 1);
	    }
	}
}
0