結果

問題 No.389 ロジックパズルの組み合わせ
ユーザー tjaketjake
提出日時 2016-07-08 22:47:01
言語 Python2
(2.7.18)
結果
WA  
実行時間 -
コード長 348 bytes
コンパイル時間 618 ms
コンパイル使用メモリ 6,820 KB
実行使用メモリ 45,428 KB
最終ジャッジ日時 2024-10-13 06:12:57
合計ジャッジ時間 13,542 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
6,144 KB
testcase_01 AC 11 ms
6,272 KB
testcase_02 AC 12 ms
6,272 KB
testcase_03 WA -
testcase_04 AC 186 ms
32,000 KB
testcase_05 AC 11 ms
6,272 KB
testcase_06 AC 11 ms
6,272 KB
testcase_07 AC 12 ms
6,144 KB
testcase_08 AC 11 ms
6,400 KB
testcase_09 AC 238 ms
37,820 KB
testcase_10 AC 54 ms
11,128 KB
testcase_11 AC 243 ms
38,332 KB
testcase_12 AC 38 ms
9,060 KB
testcase_13 AC 327 ms
45,188 KB
testcase_14 AC 67 ms
11,732 KB
testcase_15 AC 53 ms
11,648 KB
testcase_16 AC 112 ms
20,032 KB
testcase_17 AC 174 ms
28,312 KB
testcase_18 AC 293 ms
33,300 KB
testcase_19 AC 11 ms
6,272 KB
testcase_20 AC 12 ms
6,272 KB
testcase_21 AC 11 ms
6,272 KB
testcase_22 AC 12 ms
6,272 KB
testcase_23 AC 11 ms
6,144 KB
testcase_24 AC 11 ms
6,144 KB
testcase_25 AC 12 ms
6,144 KB
testcase_26 AC 12 ms
6,400 KB
testcase_27 AC 12 ms
6,400 KB
testcase_28 AC 12 ms
6,272 KB
testcase_29 AC 12 ms
6,400 KB
testcase_30 AC 11 ms
6,272 KB
testcase_31 AC 11 ms
6,144 KB
testcase_32 AC 11 ms
6,400 KB
testcase_33 AC 12 ms
6,272 KB
testcase_34 AC 11 ms
6,400 KB
testcase_35 AC 12 ms
6,144 KB
testcase_36 AC 12 ms
6,400 KB
testcase_37 AC 11 ms
6,272 KB
testcase_38 AC 12 ms
6,272 KB
testcase_39 AC 12 ms
6,272 KB
testcase_40 AC 11 ms
6,400 KB
testcase_41 AC 11 ms
6,272 KB
testcase_42 AC 12 ms
6,272 KB
testcase_43 AC 11 ms
6,400 KB
testcase_44 AC 11 ms
6,400 KB
testcase_45 AC 11 ms
6,272 KB
testcase_46 AC 11 ms
6,272 KB
testcase_47 AC 11 ms
6,400 KB
testcase_48 AC 11 ms
6,272 KB
testcase_49 WA -
testcase_50 WA -
testcase_51 WA -
testcase_52 WA -
testcase_53 WA -
testcase_54 WA -
testcase_55 WA -
testcase_56 WA -
testcase_57 WA -
testcase_58 WA -
testcase_59 WA -
testcase_60 WA -
testcase_61 WA -
testcase_62 WA -
testcase_63 WA -
testcase_64 WA -
testcase_65 WA -
testcase_66 WA -
testcase_67 WA -
testcase_68 WA -
testcase_69 AC 195 ms
33,280 KB
testcase_70 AC 142 ms
25,536 KB
testcase_71 AC 89 ms
17,920 KB
testcase_72 AC 231 ms
38,784 KB
testcase_73 AC 99 ms
19,328 KB
testcase_74 AC 96 ms
18,304 KB
testcase_75 AC 97 ms
18,560 KB
testcase_76 AC 137 ms
25,088 KB
testcase_77 AC 138 ms
25,216 KB
testcase_78 AC 59 ms
13,056 KB
testcase_79 AC 82 ms
16,512 KB
testcase_80 AC 54 ms
12,288 KB
testcase_81 AC 24 ms
8,064 KB
testcase_82 AC 218 ms
36,992 KB
testcase_83 AC 111 ms
20,972 KB
testcase_84 AC 62 ms
13,568 KB
testcase_85 AC 246 ms
41,216 KB
testcase_86 AC 221 ms
37,376 KB
testcase_87 AC 29 ms
8,832 KB
testcase_88 AC 13 ms
6,528 KB
testcase_89 AC 165 ms
23,784 KB
testcase_90 AC 332 ms
45,412 KB
testcase_91 AC 314 ms
36,352 KB
testcase_92 AC 77 ms
13,832 KB
testcase_93 AC 258 ms
33,468 KB
testcase_94 AC 182 ms
31,360 KB
testcase_95 AC 210 ms
25,608 KB
testcase_96 AC 321 ms
44,652 KB
testcase_97 AC 279 ms
39,152 KB
testcase_98 AC 257 ms
39,300 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 10**9 + 7
m = input()
H = map(int, raw_input().split())
if H[0] == 0:
    print 1
else:
    cnt = m - (sum(H) + len(H)-1) + len(H)
    ans = 1
    fact = [1]*(m+1)
    rev = [1]*(m+1)
    for i in xrange(1, m+1):
        fact[i] = (fact[i-1]*i) % MOD
    print (fact[cnt]*pow(fact[len(H)], MOD-2, MOD)*pow(fact[cnt-len(H)], MOD-2, MOD)) % MOD
0