結果

問題 No.1629 Sorting Integers (SUM of M)
ユーザー ryusukeryusuke
提出日時 2022-01-26 21:04:40
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 119 ms / 2,000 ms
コード長 513 bytes
コンパイル時間 85 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 18,560 KB
最終ジャッジ日時 2024-06-06 04:18:50
合計ジャッジ時間 1,865 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,752 KB
testcase_01 AC 28 ms
10,752 KB
testcase_02 AC 27 ms
10,752 KB
testcase_03 AC 26 ms
10,880 KB
testcase_04 AC 74 ms
13,952 KB
testcase_05 AC 38 ms
11,392 KB
testcase_06 AC 37 ms
11,648 KB
testcase_07 AC 82 ms
15,360 KB
testcase_08 AC 72 ms
14,208 KB
testcase_09 AC 78 ms
14,848 KB
testcase_10 AC 69 ms
14,464 KB
testcase_11 AC 58 ms
13,184 KB
testcase_12 AC 70 ms
14,464 KB
testcase_13 AC 79 ms
14,848 KB
testcase_14 AC 61 ms
13,440 KB
testcase_15 AC 77 ms
14,976 KB
testcase_16 AC 77 ms
14,848 KB
testcase_17 AC 119 ms
18,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
c = list(map(int, input().split()))

mod = 10 ** 9 + 7

# 階乗テーブル
fac = [1] * (n + 1)
for i in range(n):
    fac[i + 1] = fac[i] * (i + 1) 
    fac[i + 1] %= mod

# 10^kの和
t = (pow(10, n, mod) - 1) * pow(9, -1, mod)

# i * Ci の和
i_Ci = 0
for i in range(9):
    i_Ci += (i + 1) * c[i]

# 1 / (c1! * c2! * ... * c9!) の積
fac_Ci = 1
for i in range(9):
    if fac[c[i]] == 0: continue
    fac_Ci *= pow(fac[c[i]], -1, mod)

ans = t * i_Ci * fac_Ci * fac[n - 1] % mod

print(ans)
0