結果

問題 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  
実行時間 125 ms / 2,000 ms
コード長 513 bytes
コンパイル時間 268 ms
コンパイル使用メモリ 12,288 KB
実行使用メモリ 18,304 KB
最終ジャッジ日時 2024-12-23 15:41:25
合計ジャッジ時間 1,875 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,496 KB
testcase_01 AC 26 ms
10,496 KB
testcase_02 AC 25 ms
10,496 KB
testcase_03 AC 27 ms
10,496 KB
testcase_04 AC 68 ms
13,824 KB
testcase_05 AC 35 ms
11,264 KB
testcase_06 AC 40 ms
11,520 KB
testcase_07 AC 79 ms
15,232 KB
testcase_08 AC 68 ms
14,080 KB
testcase_09 AC 76 ms
14,464 KB
testcase_10 AC 68 ms
14,208 KB
testcase_11 AC 56 ms
12,800 KB
testcase_12 AC 69 ms
14,208 KB
testcase_13 AC 70 ms
14,464 KB
testcase_14 AC 57 ms
13,312 KB
testcase_15 AC 75 ms
14,720 KB
testcase_16 AC 76 ms
14,464 KB
testcase_17 AC 125 ms
18,304 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