結果

問題 No.462 6日知らずのコンピュータ
ユーザー nebukuro09nebukuro09
提出日時 2016-12-14 13:30:13
言語 D
(dmd 2.109.1)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 861 bytes
コンパイル時間 1,288 ms
コンパイル使用メモリ 123,264 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-12 05:32:55
合計ジャッジ時間 3,093 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 84
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.stdio;
import std.array;
import std.string;
import std.conv;
import std.algorithm;
import std.typecons;
import std.range;
import std.random;
import std.math;
import std.container;
import std.numeric;
import std.bigint;
import core.bitop;


void main() {
  long MOD = 10^^9+7;
  auto s = readln.split.map!(to!int).array;
  auto N = s[0];
  auto K = s[1];

  auto f = new long[](N+1);
  f[0] = 1;
  f[1] = 1;
  foreach (i; 2..N+1)
    f[i] = f[i-1] * i % MOD;

  if (K == 0) {
    writeln(f[N]);
    return;
  }
  
  auto A = readln.split.map!(to!long).array.sort().array;

  foreach (i; 0..K)
    foreach (j; i+1..K)
      if ((A[i] & A[j]) != A[i]) {
        writeln(0);
        return;
      }


  
  long ans = 1;
  int cnt = 0;
  foreach (a; A) {
    (ans *= f[a.popcnt - cnt]) %= MOD;
    cnt = a.popcnt;
  }
  writeln(ans * f[N - cnt] % MOD);
}
0