結果

問題 No.1629 Sorting Integers (SUM of M)
ユーザー SidewaysOwlSidewaysOwl
提出日時 2021-07-30 21:25:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,147 ms / 2,000 ms
コード長 601 bytes
コンパイル時間 174 ms
コンパイル使用メモリ 81,944 KB
実行使用メモリ 78,592 KB
最終ジャッジ日時 2024-09-15 22:53:17
合計ジャッジ時間 6,976 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,456 KB
testcase_01 AC 42 ms
51,968 KB
testcase_02 AC 42 ms
52,096 KB
testcase_03 AC 42 ms
51,968 KB
testcase_04 AC 166 ms
76,544 KB
testcase_05 AC 79 ms
65,408 KB
testcase_06 AC 86 ms
66,560 KB
testcase_07 AC 393 ms
77,568 KB
testcase_08 AC 261 ms
76,928 KB
testcase_09 AC 402 ms
77,440 KB
testcase_10 AC 266 ms
77,056 KB
testcase_11 AC 225 ms
76,544 KB
testcase_12 AC 553 ms
77,056 KB
testcase_13 AC 604 ms
76,928 KB
testcase_14 AC 416 ms
76,672 KB
testcase_15 AC 624 ms
77,312 KB
testcase_16 AC 609 ms
77,184 KB
testcase_17 AC 1,147 ms
78,592 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import permutations
import math
n = int(input())
c = list(map(int,input().split()))

fac_arr = [1] * (n+1)
r_s_fac_arr = [1] * (n+1)
mod = 10 ** 9 + 7
for i in range(1,n+1):
    fac_arr[i] = (fac_arr[i-1] % mod) * i % mod
    r_s_fac_arr[i] = (r_s_fac_arr[i-1] % mod) * pow(i,mod-2,mod) % mod 
ans = 0
nn = fac_arr[n]
for i in range(9):
    if c[i] != 0:
        nn = nn * r_s_fac_arr[c[i]] % mod
ans = 0
nn = nn * pow(n,mod-2,mod) % mod
for i in range(9):
    if c[i] != 0:
        for j in range(n):
            ans = (ans  + (i+1) * nn *  c[i] * pow(10,j,mod)) % mod 
print(ans)
    
0