結果

問題 No.462 6日知らずのコンピュータ
ユーザー GrenacheGrenache
提出日時 2016-12-13 00:36:35
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,140 bytes
コンパイル時間 4,035 ms
コンパイル使用メモリ 79,976 KB
実行使用メモリ 41,804 KB
最終ジャッジ日時 2024-11-29 23:11:28
合計ジャッジ時間 19,048 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 141 ms
41,532 KB
testcase_01 WA -
testcase_02 AC 149 ms
41,484 KB
testcase_03 AC 148 ms
41,096 KB
testcase_04 AC 141 ms
41,188 KB
testcase_05 AC 138 ms
41,548 KB
testcase_06 AC 146 ms
41,268 KB
testcase_07 AC 144 ms
41,176 KB
testcase_08 AC 140 ms
41,448 KB
testcase_09 AC 141 ms
41,476 KB
testcase_10 AC 140 ms
41,356 KB
testcase_11 AC 142 ms
41,176 KB
testcase_12 AC 143 ms
41,284 KB
testcase_13 AC 128 ms
41,136 KB
testcase_14 AC 149 ms
41,468 KB
testcase_15 AC 142 ms
41,528 KB
testcase_16 AC 139 ms
41,124 KB
testcase_17 AC 142 ms
41,408 KB
testcase_18 AC 142 ms
41,040 KB
testcase_19 AC 143 ms
41,032 KB
testcase_20 AC 143 ms
41,300 KB
testcase_21 AC 143 ms
41,484 KB
testcase_22 AC 145 ms
41,468 KB
testcase_23 AC 148 ms
41,264 KB
testcase_24 AC 141 ms
41,648 KB
testcase_25 AC 151 ms
41,036 KB
testcase_26 AC 145 ms
41,264 KB
testcase_27 AC 143 ms
41,104 KB
testcase_28 AC 126 ms
40,080 KB
testcase_29 AC 144 ms
41,580 KB
testcase_30 AC 142 ms
41,164 KB
testcase_31 AC 145 ms
41,408 KB
testcase_32 AC 139 ms
41,188 KB
testcase_33 AC 148 ms
41,272 KB
testcase_34 AC 141 ms
41,252 KB
testcase_35 AC 142 ms
41,460 KB
testcase_36 AC 143 ms
41,508 KB
testcase_37 AC 142 ms
41,492 KB
testcase_38 AC 146 ms
41,020 KB
testcase_39 AC 148 ms
41,508 KB
testcase_40 AC 149 ms
41,528 KB
testcase_41 AC 151 ms
41,176 KB
testcase_42 AC 149 ms
41,628 KB
testcase_43 AC 145 ms
41,224 KB
testcase_44 AC 148 ms
41,248 KB
testcase_45 AC 145 ms
40,952 KB
testcase_46 AC 147 ms
41,468 KB
testcase_47 AC 149 ms
41,460 KB
testcase_48 AC 151 ms
41,032 KB
testcase_49 AC 142 ms
41,076 KB
testcase_50 WA -
testcase_51 WA -
testcase_52 AC 152 ms
41,528 KB
testcase_53 AC 143 ms
41,304 KB
testcase_54 AC 145 ms
41,028 KB
testcase_55 AC 143 ms
40,960 KB
testcase_56 AC 151 ms
41,244 KB
testcase_57 AC 147 ms
41,448 KB
testcase_58 AC 143 ms
41,616 KB
testcase_59 AC 148 ms
41,256 KB
testcase_60 AC 152 ms
41,656 KB
testcase_61 AC 141 ms
41,616 KB
testcase_62 AC 141 ms
41,508 KB
testcase_63 AC 146 ms
41,208 KB
testcase_64 AC 142 ms
41,164 KB
testcase_65 AC 142 ms
41,408 KB
testcase_66 AC 145 ms
41,124 KB
testcase_67 AC 148 ms
41,088 KB
testcase_68 AC 150 ms
41,560 KB
testcase_69 AC 150 ms
41,792 KB
testcase_70 AC 146 ms
41,408 KB
testcase_71 AC 148 ms
41,804 KB
testcase_72 AC 148 ms
41,636 KB
testcase_73 AC 146 ms
41,344 KB
testcase_74 WA -
testcase_75 AC 149 ms
41,628 KB
testcase_76 AC 143 ms
41,088 KB
testcase_77 AC 146 ms
41,460 KB
testcase_78 AC 154 ms
41,624 KB
testcase_79 AC 142 ms
41,048 KB
testcase_80 AC 142 ms
41,356 KB
testcase_81 AC 142 ms
41,180 KB
testcase_82 AC 138 ms
41,656 KB
testcase_83 AC 140 ms
41,284 KB
testcase_84 AC 140 ms
41,600 KB
testcase_85 AC 138 ms
41,444 KB
testcase_86 AC 142 ms
41,460 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;


public class Main_yukicoder462 {

	private static Scanner sc;
	private static Printer pr;

	private static void solve() {
		final int MOD = 1_000_000_007;

		int n = sc.nextInt();
		int k = sc.nextInt();

		long[] a = new long[k];
		for (int i = 0; i < k; i++) {
			a[i] = sc.nextLong();
		}

		Set<Integer> hs = new TreeSet<>();
		for (int i = 0; i < k; i++) {
			int tmp = Long.bitCount(a[i]);

			if (hs.contains(tmp)) {
				pr.println(0);
				return;
			} else {
				hs.add(tmp);
			}
		}
		hs.add(0);
		hs.add(n);

		long ret = 1;
		List<Integer> al = new ArrayList<>(hs);
		Collections.sort(al);
		for (int i = 1, size = al.size(); i < size; i++) {
			int tmp = al.get(i) - al.get(i - 1);
			for (int j = 1; j <= tmp; j++) {
				ret = ret * j % MOD;
			}
		}

		pr.println(ret);
	}

	// ---------------------------------------------------
	public static void main(String[] args) {
		sc = new Scanner(System.in);
		pr = new Printer(System.out);

		solve();

		pr.close();
		sc.close();
	}

	private static class Printer extends PrintWriter {
		Printer(PrintStream out) {
			super(out);
		}
	}
}
0