結果

問題 No.1629 Sorting Integers (SUM of M)
ユーザー 👑 rin204rin204
提出日時 2021-07-30 20:39:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 56 ms / 2,000 ms
コード長 814 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 82,516 KB
実行使用メモリ 62,592 KB
最終ジャッジ日時 2024-09-15 22:29:04
合計ジャッジ時間 1,820 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
62,464 KB
testcase_01 AC 51 ms
62,208 KB
testcase_02 AC 52 ms
61,952 KB
testcase_03 AC 51 ms
62,208 KB
testcase_04 AC 52 ms
62,464 KB
testcase_05 AC 51 ms
62,564 KB
testcase_06 AC 51 ms
62,208 KB
testcase_07 AC 51 ms
62,208 KB
testcase_08 AC 52 ms
61,952 KB
testcase_09 AC 52 ms
62,080 KB
testcase_10 AC 51 ms
62,464 KB
testcase_11 AC 52 ms
62,208 KB
testcase_12 AC 56 ms
62,208 KB
testcase_13 AC 51 ms
61,952 KB
testcase_14 AC 52 ms
62,592 KB
testcase_15 AC 52 ms
62,464 KB
testcase_16 AC 51 ms
62,208 KB
testcase_17 AC 52 ms
62,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 10 ** 9 + 7
N = 200200
fact = [0 for _ in range(N)]
invfact = [0 for _ in range(N)]
fact[0] = 1
for i in range(1, N):
    fact[i] = fact[i - 1] * i % MOD

invfact[N - 1] = pow(fact[N - 1], MOD - 2, MOD)

for i in range(N - 2, -1, -1):
    invfact[i] = invfact[i + 1] * (i + 1) % MOD

def nCk(n, k):
    if k < 0 or n < k:
        return 0
    else:
        return (fact[n] * invfact[k] % MOD) * invfact[n - k] % MOD

def nHk(n, k):
    return nCk(n + k - 1, k)


n = int(input())
cnt = list(map(int, input().split()))
m = n
times = 1
for c in cnt:
    times *= nCk(m, c)
    m -= c
    times %= MOD
    
tot = 0
for i, c in enumerate(cnt, 1):
    tot += i * (times * pow(nCk(n, c), MOD - 2, MOD) * nCk(n - 1, c - 1))
    tot %= MOD

print(tot * (pow(10, n, MOD) - 1) * pow(9, MOD - 2, MOD) % MOD)
    
    

0