結果

問題 No.462 6日知らずのコンピュータ
ユーザー qwegatqwegat
提出日時 2023-01-05 13:13:03
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 405 bytes
コンパイル時間 229 ms
コンパイル使用メモリ 81,880 KB
実行使用メモリ 60,412 KB
最終ジャッジ日時 2024-05-06 18:09:45
合計ジャッジ時間 5,814 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,256 KB
testcase_01 AC 43 ms
53,468 KB
testcase_02 AC 43 ms
59,408 KB
testcase_03 AC 43 ms
60,412 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 40 ms
53,268 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 38 ms
53,124 KB
testcase_10 AC 38 ms
53,024 KB
testcase_11 AC 38 ms
53,200 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 38 ms
52,948 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 41 ms
58,744 KB
testcase_24 AC 39 ms
53,380 KB
testcase_25 AC 42 ms
59,552 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 39 ms
53,340 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 42 ms
58,684 KB
testcase_34 WA -
testcase_35 AC 39 ms
53,480 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 43 ms
58,880 KB
testcase_39 WA -
testcase_40 AC 41 ms
58,680 KB
testcase_41 AC 42 ms
58,800 KB
testcase_42 WA -
testcase_43 WA -
testcase_44 AC 41 ms
58,380 KB
testcase_45 AC 38 ms
53,404 KB
testcase_46 WA -
testcase_47 AC 42 ms
60,316 KB
testcase_48 WA -
testcase_49 AC 38 ms
53,864 KB
testcase_50 AC 38 ms
52,880 KB
testcase_51 AC 37 ms
52,588 KB
testcase_52 AC 38 ms
53,180 KB
testcase_53 AC 37 ms
52,956 KB
testcase_54 AC 37 ms
53,332 KB
testcase_55 AC 38 ms
52,264 KB
testcase_56 AC 38 ms
53,388 KB
testcase_57 AC 38 ms
52,884 KB
testcase_58 AC 38 ms
53,180 KB
testcase_59 AC 38 ms
52,536 KB
testcase_60 AC 37 ms
54,012 KB
testcase_61 AC 38 ms
53,332 KB
testcase_62 AC 38 ms
52,464 KB
testcase_63 AC 37 ms
53,084 KB
testcase_64 AC 37 ms
53,832 KB
testcase_65 AC 37 ms
53,264 KB
testcase_66 AC 38 ms
52,868 KB
testcase_67 AC 38 ms
52,284 KB
testcase_68 AC 38 ms
52,480 KB
testcase_69 AC 37 ms
52,792 KB
testcase_70 AC 36 ms
53,340 KB
testcase_71 AC 37 ms
52,380 KB
testcase_72 AC 37 ms
52,068 KB
testcase_73 AC 37 ms
54,020 KB
testcase_74 AC 36 ms
52,740 KB
testcase_75 AC 37 ms
52,496 KB
testcase_76 AC 37 ms
52,344 KB
testcase_77 AC 38 ms
52,648 KB
testcase_78 AC 37 ms
52,408 KB
testcase_79 AC 37 ms
52,420 KB
testcase_80 WA -
testcase_81 AC 37 ms
53,140 KB
testcase_82 WA -
testcase_83 WA -
testcase_84 AC 37 ms
52,732 KB
testcase_85 AC 37 ms
53,000 KB
testcase_86 AC 37 ms
52,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

n,k = list(map(int,input().split()))
na = []
ns = 0
nd = 1
df = False
if k > 0:
	a = list(map(int,input().split()))
	a.append(0)
	
	a.sort()

	for i in range(k):
		if (a[i])&(~a[i+1]) > 0:
			df = True
			break
		else:
			d = bin(a[i]^a[i+1]).count("1")
			na.append(d)
			ns += d
			nd *= math.factorial(d)
if df:
	print(0)
elif ns > n:
	print(0)
else:
	nd *= math.factorial(n-ns)
	print(nd)
0