結果

問題 No.1629 Sorting Integers (SUM of M)
ユーザー lloyzlloyz
提出日時 2021-12-26 18:09:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 53 ms / 2,000 ms
コード長 534 bytes
コンパイル時間 281 ms
コンパイル使用メモリ 82,448 KB
実行使用メモリ 63,440 KB
最終ジャッジ日時 2024-09-23 05:28:28
合計ジャッジ時間 1,775 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,476 KB
testcase_01 AC 38 ms
53,460 KB
testcase_02 AC 37 ms
52,764 KB
testcase_03 AC 37 ms
52,888 KB
testcase_04 AC 47 ms
61,216 KB
testcase_05 AC 43 ms
59,660 KB
testcase_06 AC 44 ms
59,316 KB
testcase_07 AC 49 ms
60,952 KB
testcase_08 AC 48 ms
60,880 KB
testcase_09 AC 48 ms
61,252 KB
testcase_10 AC 47 ms
60,960 KB
testcase_11 AC 45 ms
61,468 KB
testcase_12 AC 47 ms
61,448 KB
testcase_13 AC 47 ms
61,460 KB
testcase_14 AC 46 ms
61,520 KB
testcase_15 AC 48 ms
61,724 KB
testcase_16 AC 47 ms
61,476 KB
testcase_17 AC 53 ms
63,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

fact = [1] * (max(10, n + 1))
inv = [1] * (max(10, n + 1))
finv = [1] * (max(10, n + 1))
for i in range(2, max(10, n + 1)):
    fact[i] = fact[i - 1] * i % mod
    inv[i] = mod - inv[mod % i] * (mod // i) % mod
    finv[i] = finv[i - 1] * inv[i] % mod

ans = sum([(i + 1) * A[i] for i in range(9)]) % mod
ans *= (pow(10, n, mod) - 1 + mod) * inv[9] % mod
ans %= mod
ans *= fact[n - 1]
ans %= mod
for i in range(9):
    ans *= finv[A[i]]
    ans %= mod
print(ans)

0