結果

問題 No.389 ロジックパズルの組み合わせ
ユーザー Chihaya_chanChihaya_chan
提出日時 2020-08-10 03:18:03
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 883 bytes
コンパイル時間 314 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 84,480 KB
最終ジャッジ日時 2024-10-06 00:54:53
合計ジャッジ時間 12,716 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 WA -
testcase_02 AC 31 ms
10,880 KB
testcase_03 AC 33 ms
10,752 KB
testcase_04 AC 415 ms
61,952 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 439 ms
65,236 KB
testcase_10 AC 86 ms
18,008 KB
testcase_11 AC 447 ms
66,028 KB
testcase_12 AC 49 ms
12,764 KB
testcase_13 AC 160 ms
25,252 KB
testcase_14 AC 81 ms
16,308 KB
testcase_15 AC 95 ms
19,328 KB
testcase_16 AC 214 ms
35,024 KB
testcase_17 AC 314 ms
47,836 KB
testcase_18 AC 272 ms
37,376 KB
testcase_19 AC 30 ms
10,752 KB
testcase_20 AC 30 ms
10,752 KB
testcase_21 AC 30 ms
10,752 KB
testcase_22 AC 30 ms
10,752 KB
testcase_23 AC 30 ms
10,880 KB
testcase_24 AC 30 ms
10,752 KB
testcase_25 AC 30 ms
10,752 KB
testcase_26 AC 30 ms
10,752 KB
testcase_27 AC 30 ms
10,880 KB
testcase_28 AC 30 ms
10,752 KB
testcase_29 AC 29 ms
10,880 KB
testcase_30 AC 30 ms
10,752 KB
testcase_31 AC 30 ms
10,752 KB
testcase_32 AC 30 ms
10,624 KB
testcase_33 AC 30 ms
10,880 KB
testcase_34 AC 30 ms
10,880 KB
testcase_35 AC 30 ms
10,752 KB
testcase_36 AC 30 ms
10,752 KB
testcase_37 AC 30 ms
10,880 KB
testcase_38 AC 31 ms
10,752 KB
testcase_39 AC 31 ms
10,752 KB
testcase_40 AC 31 ms
10,752 KB
testcase_41 AC 31 ms
10,880 KB
testcase_42 AC 31 ms
10,624 KB
testcase_43 AC 32 ms
10,880 KB
testcase_44 AC 31 ms
10,752 KB
testcase_45 AC 31 ms
10,752 KB
testcase_46 AC 31 ms
10,752 KB
testcase_47 AC 30 ms
10,752 KB
testcase_48 AC 31 ms
10,752 KB
testcase_49 AC 99 ms
16,664 KB
testcase_50 AC 34 ms
11,776 KB
testcase_51 AC 35 ms
11,008 KB
testcase_52 AC 45 ms
13,900 KB
testcase_53 AC 38 ms
11,392 KB
testcase_54 AC 48 ms
14,680 KB
testcase_55 AC 31 ms
10,752 KB
testcase_56 AC 35 ms
11,264 KB
testcase_57 AC 60 ms
13,496 KB
testcase_58 AC 86 ms
15,300 KB
testcase_59 AC 73 ms
14,172 KB
testcase_60 AC 50 ms
12,196 KB
testcase_61 AC 121 ms
18,556 KB
testcase_62 AC 51 ms
12,316 KB
testcase_63 AC 88 ms
16,024 KB
testcase_64 AC 49 ms
14,328 KB
testcase_65 AC 39 ms
11,520 KB
testcase_66 AC 49 ms
12,124 KB
testcase_67 AC 47 ms
12,388 KB
testcase_68 AC 49 ms
14,592 KB
testcase_69 AC 239 ms
38,400 KB
testcase_70 AC 126 ms
23,680 KB
testcase_71 AC 181 ms
30,976 KB
testcase_72 AC 91 ms
19,200 KB
testcase_73 AC 143 ms
25,984 KB
testcase_74 AC 190 ms
32,384 KB
testcase_75 AC 174 ms
29,824 KB
testcase_76 AC 80 ms
17,408 KB
testcase_77 AC 308 ms
48,000 KB
testcase_78 AC 44 ms
12,416 KB
testcase_79 AC 30 ms
10,752 KB
testcase_80 AC 30 ms
10,752 KB
testcase_81 AC 30 ms
10,624 KB
testcase_82 AC 30 ms
10,752 KB
testcase_83 AC 30 ms
10,624 KB
testcase_84 AC 31 ms
10,752 KB
testcase_85 AC 31 ms
10,752 KB
testcase_86 AC 31 ms
10,752 KB
testcase_87 AC 30 ms
10,752 KB
testcase_88 AC 30 ms
10,752 KB
testcase_89 AC 115 ms
19,748 KB
testcase_90 AC 173 ms
26,360 KB
testcase_91 AC 280 ms
38,744 KB
testcase_92 AC 66 ms
14,560 KB
testcase_93 AC 188 ms
28,176 KB
testcase_94 AC 33 ms
10,752 KB
testcase_95 AC 195 ms
28,636 KB
testcase_96 AC 160 ms
25,008 KB
testcase_97 AC 149 ms
24,008 KB
testcase_98 AC 86 ms
16,676 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 M >= 0:
    c = Combi(M, mod)
    print(c.C(M, L))
else:
    print("NA")
0