結果

問題 No.389 ロジックパズルの組み合わせ
ユーザー Chihaya_chanChihaya_chan
提出日時 2020-08-10 03:21:04
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 438 ms / 2,000 ms
コード長 922 bytes
コンパイル時間 303 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 66,124 KB
最終ジャッジ日時 2024-10-06 00:55:10
合計ジャッジ時間 11,128 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,880 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 30 ms
10,880 KB
testcase_04 AC 409 ms
62,208 KB
testcase_05 AC 29 ms
10,752 KB
testcase_06 AC 29 ms
10,880 KB
testcase_07 AC 29 ms
10,880 KB
testcase_08 AC 28 ms
10,752 KB
testcase_09 AC 432 ms
65,192 KB
testcase_10 AC 84 ms
18,016 KB
testcase_11 AC 438 ms
66,124 KB
testcase_12 AC 49 ms
12,876 KB
testcase_13 AC 159 ms
24,908 KB
testcase_14 AC 79 ms
16,320 KB
testcase_15 AC 94 ms
19,328 KB
testcase_16 AC 212 ms
35,284 KB
testcase_17 AC 313 ms
47,976 KB
testcase_18 AC 279 ms
37,264 KB
testcase_19 AC 30 ms
10,880 KB
testcase_20 AC 30 ms
10,752 KB
testcase_21 AC 31 ms
11,008 KB
testcase_22 AC 30 ms
10,880 KB
testcase_23 AC 30 ms
10,880 KB
testcase_24 AC 32 ms
10,880 KB
testcase_25 AC 30 ms
10,880 KB
testcase_26 AC 30 ms
10,752 KB
testcase_27 AC 31 ms
10,880 KB
testcase_28 AC 30 ms
11,008 KB
testcase_29 AC 30 ms
10,752 KB
testcase_30 AC 30 ms
10,880 KB
testcase_31 AC 31 ms
10,880 KB
testcase_32 AC 30 ms
10,752 KB
testcase_33 AC 30 ms
10,880 KB
testcase_34 AC 31 ms
10,752 KB
testcase_35 AC 30 ms
10,752 KB
testcase_36 AC 30 ms
10,880 KB
testcase_37 AC 30 ms
10,880 KB
testcase_38 AC 30 ms
10,880 KB
testcase_39 AC 29 ms
10,752 KB
testcase_40 AC 30 ms
10,880 KB
testcase_41 AC 31 ms
10,880 KB
testcase_42 AC 30 ms
10,880 KB
testcase_43 AC 29 ms
10,880 KB
testcase_44 AC 30 ms
10,752 KB
testcase_45 AC 29 ms
10,880 KB
testcase_46 AC 30 ms
10,752 KB
testcase_47 AC 30 ms
10,880 KB
testcase_48 AC 29 ms
10,752 KB
testcase_49 AC 102 ms
16,832 KB
testcase_50 AC 35 ms
11,904 KB
testcase_51 AC 34 ms
11,008 KB
testcase_52 AC 46 ms
14,048 KB
testcase_53 AC 37 ms
11,648 KB
testcase_54 AC 49 ms
14,584 KB
testcase_55 AC 31 ms
10,752 KB
testcase_56 AC 35 ms
11,264 KB
testcase_57 AC 60 ms
13,216 KB
testcase_58 AC 87 ms
15,712 KB
testcase_59 AC 80 ms
14,124 KB
testcase_60 AC 50 ms
12,336 KB
testcase_61 AC 127 ms
18,492 KB
testcase_62 AC 52 ms
12,468 KB
testcase_63 AC 90 ms
15,912 KB
testcase_64 AC 48 ms
14,464 KB
testcase_65 AC 40 ms
11,776 KB
testcase_66 AC 49 ms
12,136 KB
testcase_67 AC 47 ms
12,528 KB
testcase_68 AC 50 ms
14,616 KB
testcase_69 AC 236 ms
38,400 KB
testcase_70 AC 127 ms
23,680 KB
testcase_71 AC 182 ms
31,232 KB
testcase_72 AC 90 ms
19,200 KB
testcase_73 AC 140 ms
25,984 KB
testcase_74 AC 187 ms
32,384 KB
testcase_75 AC 170 ms
29,696 KB
testcase_76 AC 78 ms
17,408 KB
testcase_77 AC 306 ms
48,128 KB
testcase_78 AC 42 ms
12,544 KB
testcase_79 AC 29 ms
10,880 KB
testcase_80 AC 29 ms
10,880 KB
testcase_81 AC 30 ms
10,880 KB
testcase_82 AC 29 ms
10,752 KB
testcase_83 AC 30 ms
10,880 KB
testcase_84 AC 30 ms
10,752 KB
testcase_85 AC 29 ms
10,880 KB
testcase_86 AC 29 ms
10,880 KB
testcase_87 AC 29 ms
10,752 KB
testcase_88 AC 29 ms
10,880 KB
testcase_89 AC 112 ms
19,888 KB
testcase_90 AC 170 ms
26,248 KB
testcase_91 AC 283 ms
38,240 KB
testcase_92 AC 65 ms
14,580 KB
testcase_93 AC 186 ms
27,812 KB
testcase_94 AC 32 ms
10,880 KB
testcase_95 AC 194 ms
28,788 KB
testcase_96 AC 156 ms
24,624 KB
testcase_97 AC 147 ms
23,960 KB
testcase_98 AC 85 ms
16,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class Combi():
    def __init__(self, N, mod):
        self.power = [1 for _ in range(N+1)]
        self.rev = [1 for _ in range(N+1)]
        self.mod = mod
        for i in range(2, N+1):
            self.power[i] = (self.power[i-1]*i) % self.mod
        self.rev[N] = pow(self.power[N], self.mod-2, self.mod)
        for j in range(N, 0, -1):
            self.rev[j-1] = (self.rev[j]*j) % self.mod

    def C(self, K, R):
        if K < R:
            return "NA"
        else:
            return ((self.power[K])*(self.rev[K-R])*(self.rev[R])) % self.mod

    def P(self, K, R):
        if K < R:
            return "NA"
        else:
            return (self.power[K])*(self.rev[K-R]) % self.mod

mod =10**9 + 7
M = int(input())
H = list(map(int, input().split()))
L = len(H)
M += (L-sum(H))
M -= (L-1)

if sum(H)==0:
    print(1)
    exit()
if M >= 0:
    c = Combi(M, mod)
    print(c.C(M, L))
else:
    print("NA")
0