結果

問題 No.1629 Sorting Integers (SUM of M)
ユーザー lloyzlloyz
提出日時 2021-12-26 18:09:35
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 311 ms / 2,000 ms
コード長 556 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 34,176 KB
最終ジャッジ日時 2024-09-23 05:28:41
合計ジャッジ時間 3,104 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 136 ms
20,352 KB
testcase_05 AC 54 ms
12,800 KB
testcase_06 AC 59 ms
13,568 KB
testcase_07 AC 190 ms
24,576 KB
testcase_08 AC 144 ms
20,992 KB
testcase_09 AC 172 ms
22,912 KB
testcase_10 AC 147 ms
21,248 KB
testcase_11 AC 108 ms
17,664 KB
testcase_12 AC 151 ms
21,504 KB
testcase_13 AC 165 ms
22,912 KB
testcase_14 AC 115 ms
18,688 KB
testcase_15 AC 174 ms
23,296 KB
testcase_16 AC 166 ms
22,912 KB
testcase_17 AC 311 ms
34,176 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