結果

問題 No.1629 Sorting Integers (SUM of M)
ユーザー tassei903tassei903
提出日時 2021-07-30 21:10:18
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 619 bytes
コンパイル時間 223 ms
コンパイル使用メモリ 81,964 KB
実行使用メモリ 265,988 KB
最終ジャッジ日時 2024-09-15 22:07:09
合計ジャッジ時間 3,838 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
57,344 KB
testcase_01 AC 39 ms
51,840 KB
testcase_02 AC 40 ms
51,840 KB
testcase_03 AC 40 ms
51,968 KB
testcase_04 TLE -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
sys.setrecursionlimit(10**7)
yes = lambda :print("yes");Yes = lambda :print("Yes")
no = lambda :print("no");No = lambda :print("No")
#######################################################################

n = ni()
c = na()
mod = 10**9+7
z = 1
f = 1
for i in range(1,n):
    f*=i
for i in range(9):
    for j in range(1,c[i]+1):
        f*=pow(j,mod-2,mod)
ans = 0
for i in range(n):
    for j in range(9):
        ans+=f*z%mod*c[j]%mod*(j+1)%mod
        ans%=mod
    z*=10
    z%=mod
print(ans)
0