結果

問題 No.1629 Sorting Integers (SUM of M)
ユーザー ryusukeryusuke
提出日時 2022-01-26 18:43:10
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 487 bytes
コンパイル時間 795 ms
コンパイル使用メモリ 82,544 KB
実行使用メモリ 87,900 KB
最終ジャッジ日時 2024-06-06 01:46:05
合計ジャッジ時間 5,668 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
59,740 KB
testcase_01 AC 35 ms
53,016 KB
testcase_02 AC 35 ms
52,572 KB
testcase_03 AC 36 ms
52,580 KB
testcase_04 AC 1,042 ms
78,484 KB
testcase_05 AC 266 ms
76,964 KB
testcase_06 AC 325 ms
76,728 KB
testcase_07 TLE -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
c = list(map(int, input().split()))

mod = 10 ** 9 + 7

fac = [1] * (n + 1)
for i in range(n):
    fac[i + 1] = fac[i] * (i + 1) 
    fac[i + 1] %= mod

ans = 0
for k in range(0, n):
    for i in range(9):
        cnt = c[i] * fac[n - 1]
        for j in range(9):
            if fac[c[j]] == 0: continue
            cnt *= pow(fac[c[j]], -1, mod)
        cnt *= (i + 1)
        cnt *= pow(10, k, mod)
        cnt %= mod
        ans += cnt
        ans %= mod

print(ans)
0