結果

問題 No.1629 Sorting Integers (SUM of M)
ユーザー rlangevinrlangevin
提出日時 2022-12-31 23:18:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 61 ms / 2,000 ms
コード長 661 bytes
コンパイル時間 215 ms
コンパイル使用メモリ 82,152 KB
実行使用メモリ 67,328 KB
最終ジャッジ日時 2024-05-05 05:02:17
合計ジャッジ時間 2,583 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
66,688 KB
testcase_01 AC 55 ms
66,304 KB
testcase_02 AC 54 ms
66,304 KB
testcase_03 AC 52 ms
66,048 KB
testcase_04 AC 56 ms
67,072 KB
testcase_05 AC 55 ms
66,944 KB
testcase_06 AC 55 ms
66,944 KB
testcase_07 AC 56 ms
66,944 KB
testcase_08 AC 57 ms
67,200 KB
testcase_09 AC 57 ms
67,328 KB
testcase_10 AC 56 ms
67,072 KB
testcase_11 AC 56 ms
66,944 KB
testcase_12 AC 56 ms
67,072 KB
testcase_13 AC 57 ms
66,944 KB
testcase_14 AC 56 ms
67,200 KB
testcase_15 AC 61 ms
67,072 KB
testcase_16 AC 57 ms
66,688 KB
testcase_17 AC 57 ms
67,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
C = list(map(int, input().split()))
mod = 10 ** 9 + 7

n = 505050
fact = [1] * (n + 1)
invfact = [1] * (n + 2)
for i in range(1, n):
    fact[i + 1] = ((i+1) * fact[i]) % mod
invfact[n] = pow(fact[n], mod - 2, mod)
for i in range(n - 1, -1, -1):
    invfact[i] = invfact[i + 1] * (i + 1) % mod
invfact[-1] = 0
    
v = 1
for i in range(N-1):
    v = 10 * v + 1
    v %= mod
ans = 0
for i in range(9):
    cnt = fact[N - 1]
    for j in range(9):
        if j != i:
            cnt *= invfact[C[j]]
        else:
            cnt *= invfact[C[j] - 1]
    cnt %= mod
    # print(i, cnt)  
    ans += v * (i + 1) * cnt
    ans %= mod
print(ans)    
0