結果

問題 No.389 ロジックパズルの組み合わせ
ユーザー TawaraTawara
提出日時 2016-07-08 23:44:01
言語 Python2
(2.7.18)
結果
AC  
実行時間 697 ms / 2,000 ms
コード長 362 bytes
コンパイル時間 143 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 68,628 KB
最終ジャッジ日時 2024-10-13 07:30:37
合計ジャッジ時間 23,638 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 10 ms
6,272 KB
testcase_01 AC 17 ms
7,040 KB
testcase_02 AC 10 ms
6,272 KB
testcase_03 AC 10 ms
6,272 KB
testcase_04 AC 401 ms
47,872 KB
testcase_05 AC 60 ms
11,520 KB
testcase_06 AC 237 ms
30,464 KB
testcase_07 AC 579 ms
65,880 KB
testcase_08 AC 253 ms
32,384 KB
testcase_09 AC 483 ms
56,656 KB
testcase_10 AC 90 ms
14,144 KB
testcase_11 AC 493 ms
57,480 KB
testcase_12 AC 58 ms
10,624 KB
testcase_13 AC 626 ms
68,312 KB
testcase_14 AC 105 ms
15,008 KB
testcase_15 AC 94 ms
14,848 KB
testcase_16 AC 220 ms
28,260 KB
testcase_17 AC 350 ms
41,316 KB
testcase_18 AC 487 ms
48,732 KB
testcase_19 AC 11 ms
6,400 KB
testcase_20 AC 10 ms
6,272 KB
testcase_21 AC 10 ms
6,272 KB
testcase_22 AC 11 ms
6,400 KB
testcase_23 AC 10 ms
6,016 KB
testcase_24 AC 11 ms
6,400 KB
testcase_25 AC 11 ms
6,272 KB
testcase_26 AC 10 ms
6,272 KB
testcase_27 AC 11 ms
6,400 KB
testcase_28 AC 10 ms
6,272 KB
testcase_29 AC 10 ms
6,272 KB
testcase_30 AC 10 ms
6,272 KB
testcase_31 AC 10 ms
6,272 KB
testcase_32 AC 10 ms
6,272 KB
testcase_33 AC 10 ms
6,144 KB
testcase_34 AC 11 ms
6,400 KB
testcase_35 AC 11 ms
6,144 KB
testcase_36 AC 12 ms
6,272 KB
testcase_37 AC 10 ms
6,144 KB
testcase_38 AC 11 ms
6,272 KB
testcase_39 AC 12 ms
6,400 KB
testcase_40 AC 12 ms
6,400 KB
testcase_41 AC 11 ms
6,272 KB
testcase_42 AC 11 ms
6,272 KB
testcase_43 AC 10 ms
6,144 KB
testcase_44 AC 10 ms
6,144 KB
testcase_45 AC 10 ms
6,272 KB
testcase_46 AC 10 ms
6,400 KB
testcase_47 AC 10 ms
6,272 KB
testcase_48 AC 9 ms
6,144 KB
testcase_49 AC 516 ms
51,024 KB
testcase_50 AC 127 ms
18,676 KB
testcase_51 AC 55 ms
10,624 KB
testcase_52 AC 479 ms
55,576 KB
testcase_53 AC 127 ms
18,588 KB
testcase_54 AC 596 ms
65,960 KB
testcase_55 AC 99 ms
15,872 KB
testcase_56 AC 48 ms
9,728 KB
testcase_57 AC 325 ms
36,516 KB
testcase_58 AC 600 ms
62,484 KB
testcase_59 AC 467 ms
50,236 KB
testcase_60 AC 179 ms
21,824 KB
testcase_61 AC 697 ms
67,076 KB
testcase_62 AC 331 ms
38,672 KB
testcase_63 AC 507 ms
51,324 KB
testcase_64 AC 520 ms
59,568 KB
testcase_65 AC 104 ms
15,172 KB
testcase_66 AC 144 ms
18,036 KB
testcase_67 AC 331 ms
38,896 KB
testcase_68 AC 561 ms
64,084 KB
testcase_69 AC 408 ms
49,792 KB
testcase_70 AC 302 ms
37,344 KB
testcase_71 AC 178 ms
24,832 KB
testcase_72 AC 495 ms
58,752 KB
testcase_73 AC 202 ms
27,136 KB
testcase_74 AC 189 ms
25,984 KB
testcase_75 AC 195 ms
26,240 KB
testcase_76 AC 287 ms
36,608 KB
testcase_77 AC 297 ms
36,584 KB
testcase_78 AC 116 ms
17,408 KB
testcase_79 AC 164 ms
22,784 KB
testcase_80 AC 106 ms
16,512 KB
testcase_81 AC 36 ms
9,088 KB
testcase_82 AC 473 ms
55,552 KB
testcase_83 AC 225 ms
29,824 KB
testcase_84 AC 119 ms
18,048 KB
testcase_85 AC 529 ms
62,272 KB
testcase_86 AC 470 ms
56,320 KB
testcase_87 AC 52 ms
10,496 KB
testcase_88 AC 14 ms
6,528 KB
testcase_89 AC 299 ms
33,972 KB
testcase_90 AC 633 ms
68,628 KB
testcase_91 AC 512 ms
53,292 KB
testcase_92 AC 130 ms
18,132 KB
testcase_93 AC 457 ms
48,904 KB
testcase_94 AC 381 ms
46,848 KB
testcase_95 AC 348 ms
36,308 KB
testcase_96 AC 619 ms
67,180 KB
testcase_97 AC 521 ms
58,292 KB
testcase_98 AC 505 ms
58,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

p = 10**9+7
M = int(raw_input())
H = map(int,raw_input().split())
lenH = len(H)
fact=[1]
for i in xrange(1,M+1):
	fact+=[i*fact[i-1]%p]
finv=[0]*(M+1)
finv[M]=pow(fact[M],p-2,p)
for i in xrange(M,0,-1):
	finv[i-1]=i*finv[i]%p
rest = M - sum(H) - (lenH - 1)
if H[0] == 0:
	print 1
elif rest < 0:
	print "NA"
else:
	print fact[lenH+rest]*finv[lenH]*finv[rest] % p
0