結果
問題 | No.1629 Sorting Integers (SUM of M) |
ユーザー | NatsubiSogan |
提出日時 | 2021-07-30 20:58:10 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
AC
|
実行時間 | 234 ms / 2,000 ms |
コード長 | 1,185 bytes |
コンパイル時間 | 368 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 41,984 KB |
最終ジャッジ日時 | 2024-09-15 22:48:00 |
合計ジャッジ時間 | 2,783 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 33 ms
10,752 KB |
testcase_01 | AC | 34 ms
10,752 KB |
testcase_02 | AC | 32 ms
10,752 KB |
testcase_03 | AC | 31 ms
10,752 KB |
testcase_04 | AC | 119 ms
23,552 KB |
testcase_05 | AC | 50 ms
13,696 KB |
testcase_06 | AC | 55 ms
14,592 KB |
testcase_07 | AC | 154 ms
29,184 KB |
testcase_08 | AC | 119 ms
24,576 KB |
testcase_09 | AC | 136 ms
27,008 KB |
testcase_10 | AC | 121 ms
24,704 KB |
testcase_11 | AC | 90 ms
20,096 KB |
testcase_12 | AC | 124 ms
25,344 KB |
testcase_13 | AC | 136 ms
27,008 KB |
testcase_14 | AC | 100 ms
21,504 KB |
testcase_15 | AC | 139 ms
27,520 KB |
testcase_16 | AC | 138 ms
27,008 KB |
testcase_17 | AC | 234 ms
41,984 KB |
ソースコード
mod = 10 ** 9 + 7 class Combinatorics: def __init__(self, n): self.n = n self.fa = [1] * (self.n * 2 + 1) self.fi = [1] * (self.n * 2 + 1) for i in range(1, self.n * 2 + 1): self.fa[i] = self.fa[i - 1] * i % mod self.fi[-1] = pow(self.fa[-1], mod - 2, mod) for i in range(self.n * 2, 0, -1): self.fi[i - 1] = self.fi[i] * i % mod def comb(self, n, r): if n < r:return 0 if n < 0 or r < 0:return 0 return self.fa[n] * self.fi[r] % mod * self.fi[n - r] % mod def perm(self, n, r): if n < r:return 0 if n < 0 or r < 0:return 0 return self.fa[n] * self.fi[n - r] % mod def combr(self, n, r): if n == r == 0:return 1 return self.comb(n + r - 1, r) n = int(input()) c = list(map(int, input().split())) C = Combinatorics(n) ans = 0 for i in range(9): if c[i] == 0: continue c[i] -= 1 cur = n - 1 cnt = 1 for j in c: cnt *= C.comb(cur, j) cnt %= mod cur -= j c[i] += 1 ans += (i + 1) * cnt ans %= mod print(ans * (pow(10, n, mod) - 1) * pow(9, mod - 2, mod) % mod)