結果

問題 No.389 ロジックパズルの組み合わせ
ユーザー convexineqconvexineq
提出日時 2021-02-02 16:52:23
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 695 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 187,276 KB
最終ジャッジ日時 2024-06-29 23:42:07
合計ジャッジ時間 15,872 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
105,472 KB
testcase_01 WA -
testcase_02 AC 115 ms
105,472 KB
testcase_03 AC 116 ms
105,600 KB
testcase_04 AC 116 ms
105,344 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 128 ms
115,200 KB
testcase_10 AC 125 ms
113,024 KB
testcase_11 AC 128 ms
118,912 KB
testcase_12 AC 119 ms
112,000 KB
testcase_13 AC 155 ms
146,688 KB
testcase_14 AC 129 ms
119,168 KB
testcase_15 AC 117 ms
110,592 KB
testcase_16 AC 120 ms
112,896 KB
testcase_17 AC 128 ms
117,504 KB
testcase_18 AC 196 ms
164,576 KB
testcase_19 AC 116 ms
105,728 KB
testcase_20 AC 115 ms
105,728 KB
testcase_21 AC 111 ms
105,472 KB
testcase_22 AC 113 ms
105,600 KB
testcase_23 AC 111 ms
105,728 KB
testcase_24 AC 112 ms
105,472 KB
testcase_25 AC 113 ms
105,472 KB
testcase_26 AC 113 ms
105,728 KB
testcase_27 AC 115 ms
105,728 KB
testcase_28 AC 116 ms
105,344 KB
testcase_29 AC 114 ms
105,728 KB
testcase_30 AC 118 ms
105,600 KB
testcase_31 AC 117 ms
105,472 KB
testcase_32 AC 113 ms
105,472 KB
testcase_33 AC 114 ms
105,472 KB
testcase_34 AC 114 ms
105,856 KB
testcase_35 AC 111 ms
105,344 KB
testcase_36 AC 115 ms
105,472 KB
testcase_37 AC 112 ms
105,344 KB
testcase_38 AC 116 ms
105,472 KB
testcase_39 AC 112 ms
105,600 KB
testcase_40 AC 114 ms
105,600 KB
testcase_41 AC 115 ms
105,600 KB
testcase_42 AC 111 ms
105,472 KB
testcase_43 AC 111 ms
105,600 KB
testcase_44 AC 113 ms
105,472 KB
testcase_45 AC 116 ms
105,728 KB
testcase_46 AC 115 ms
105,472 KB
testcase_47 AC 116 ms
105,344 KB
testcase_48 AC 114 ms
105,600 KB
testcase_49 AC 198 ms
166,204 KB
testcase_50 AC 119 ms
110,208 KB
testcase_51 AC 121 ms
110,464 KB
testcase_52 AC 128 ms
119,040 KB
testcase_53 AC 122 ms
112,512 KB
testcase_54 AC 129 ms
121,472 KB
testcase_55 AC 116 ms
107,392 KB
testcase_56 AC 124 ms
112,512 KB
testcase_57 AC 146 ms
138,624 KB
testcase_58 AC 189 ms
163,200 KB
testcase_59 AC 162 ms
152,704 KB
testcase_60 AC 135 ms
126,848 KB
testcase_61 AC 220 ms
187,276 KB
testcase_62 AC 138 ms
128,768 KB
testcase_63 AC 188 ms
161,536 KB
testcase_64 AC 131 ms
121,472 KB
testcase_65 AC 120 ms
116,224 KB
testcase_66 AC 132 ms
126,336 KB
testcase_67 AC 134 ms
124,288 KB
testcase_68 AC 132 ms
122,752 KB
testcase_69 AC 114 ms
105,728 KB
testcase_70 AC 113 ms
105,600 KB
testcase_71 AC 116 ms
105,728 KB
testcase_72 AC 114 ms
105,344 KB
testcase_73 AC 117 ms
105,472 KB
testcase_74 AC 117 ms
105,600 KB
testcase_75 AC 114 ms
105,344 KB
testcase_76 AC 112 ms
105,728 KB
testcase_77 AC 113 ms
105,472 KB
testcase_78 AC 113 ms
105,472 KB
testcase_79 AC 115 ms
105,344 KB
testcase_80 AC 112 ms
105,344 KB
testcase_81 AC 113 ms
105,728 KB
testcase_82 AC 117 ms
105,600 KB
testcase_83 AC 115 ms
105,728 KB
testcase_84 AC 116 ms
105,344 KB
testcase_85 AC 114 ms
105,600 KB
testcase_86 AC 117 ms
105,600 KB
testcase_87 AC 117 ms
105,472 KB
testcase_88 AC 116 ms
105,600 KB
testcase_89 AC 143 ms
131,712 KB
testcase_90 AC 158 ms
147,712 KB
testcase_91 AC 197 ms
165,616 KB
testcase_92 AC 126 ms
117,248 KB
testcase_93 AC 166 ms
152,576 KB
testcase_94 AC 121 ms
107,136 KB
testcase_95 AC 169 ms
157,056 KB
testcase_96 AC 152 ms
142,976 KB
testcase_97 AC 154 ms
142,720 KB
testcase_98 AC 133 ms
122,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

SIZE=2*10**6+1; MOD=10**9+7 #998244353 #ここを変更する

inv = [0]*SIZE  # inv[j] = j^{-1} mod MOD
fac = [0]*SIZE  # fac[j] = j! mod MOD
finv = [0]*SIZE # finv[j] = (j!)^{-1} mod MOD
fac[0] = fac[1] = 1
finv[0] = finv[1] = 1
for i in range(2,SIZE):
    fac[i] = fac[i-1]*i%MOD
finv[-1] = pow(fac[-1],MOD-2,MOD)
for i in range(SIZE-1,0,-1):
    finv[i-1] = finv[i]*i%MOD
    inv[i] = finv[i]*fac[i-1]%MOD

def choose(n,r): # nCk mod MOD の計算
    if 0 <= r <= n:
        return (fac[n]*finv[r]%MOD)*finv[n-r]%MOD
    else:
        return 0

m = int(input())
*a, = map(int,input().split())
if a == [0]: print(m);exit()
x = m-sum(a)-len(a)+1
v = choose(x+len(a),x)
print(v if v else "NA")
0