結果

問題 No.1629 Sorting Integers (SUM of M)
ユーザー flippergoflippergo
提出日時 2024-11-14 08:17:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 44 ms / 2,000 ms
コード長 371 bytes
コンパイル時間 433 ms
コンパイル使用メモリ 82,216 KB
実行使用メモリ 60,988 KB
最終ジャッジ日時 2024-11-14 08:17:23
合計ジャッジ時間 2,340 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,920 KB
testcase_01 AC 38 ms
52,308 KB
testcase_02 AC 38 ms
52,352 KB
testcase_03 AC 38 ms
51,944 KB
testcase_04 AC 43 ms
59,516 KB
testcase_05 AC 43 ms
58,684 KB
testcase_06 AC 42 ms
58,500 KB
testcase_07 AC 43 ms
60,988 KB
testcase_08 AC 43 ms
58,968 KB
testcase_09 AC 43 ms
59,224 KB
testcase_10 AC 43 ms
59,512 KB
testcase_11 AC 42 ms
59,688 KB
testcase_12 AC 43 ms
59,232 KB
testcase_13 AC 43 ms
59,104 KB
testcase_14 AC 41 ms
58,656 KB
testcase_15 AC 43 ms
59,356 KB
testcase_16 AC 43 ms
60,744 KB
testcase_17 AC 44 ms
59,872 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 10**9+7
N = int(input())
C = [0]+list(map(int,input().split()))
A = list(range(N+1))
A[0] = 1
for i in range(2,N+1):
    A[i] = (i*A[i-1])%MOD
ans = 0
for i in range(1,9+1):
    ans = (ans+i*C[i])%MOD
ans = (ans*(pow(10,N,MOD)-1)*pow(9*N,MOD-2,MOD))%MOD
prod = A[N]
for i in range(1,9+1):
    prod = (prod*pow(A[C[i]],MOD-2,MOD))%MOD
ans = (ans*prod)%MOD
print(ans)
0