結果

問題 No.462 6日知らずのコンピュータ
ユーザー fiord
提出日時 2017-02-28 15:48:34
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 32 ms / 2,000 ms
コード長 1,134 bytes
コンパイル時間 2,062 ms
コンパイル使用メモリ 111,636 KB
実行使用メモリ 18,176 KB
最終ジャッジ日時 2024-06-11 23:33:24
合計ジャッジ時間 6,598 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 84
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace ConsoleApplicationSharp
{
	class Program
	{
		static void Main(string[] args)
		{
			ulong mod = (ulong)1e9 + 7;
			string[] s = Console.ReadLine().Split(' ');
			int n = int.Parse(s[0]), k = int.Parse(s[1]);
			if (k == 0)
			{
				//答えはn!
				ulong ret = 1;
				for (int i = 2; i <= n; i++) ret = (ret * (ulong)i) % mod;
				Console.WriteLine(ret);
			}
			else
			{
				s = Console.ReadLine().Split(' ');
				int count = 0;
				ulong[] a = new ulong[k+2];
				for (int i = 0; i < k; i++)	a[i + 1] = ulong.Parse(s[i]);
				a[0] = 0;	a[k + 1] = (1UL << n) - 1;
				Array.Sort(a);
				ulong ret = 1;
				//a[0]=0は確定->ret=1
				for(int i = 1; i < k+2; i++)
				{
					if ((a[i] & a[i - 1]) != a[i - 1])
					{
						ret = 0;
						break;
					}
					ulong diff = a[i] ^ a[i - 1];
					ulong cnt = 0;
					for(int j = 0; j < n; j++)
					{
						if ((diff >> j) % 2L == 1L) cnt++;
					}
					for (ulong j = 2; j <= cnt; j++) ret = (ret * j) % mod;
				}
				Console.WriteLine(ret);
			}
		}
	}
}
0