結果

問題 No.1629 Sorting Integers (SUM of M)
ユーザー ryusukeryusuke
提出日時 2022-01-26 18:43:10
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 487 bytes
コンパイル時間 352 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 156,320 KB
最終ジャッジ日時 2024-12-23 12:27:42
合計ジャッジ時間 34,110 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
57,216 KB
testcase_01 AC 42 ms
132,864 KB
testcase_02 AC 41 ms
57,344 KB
testcase_03 AC 43 ms
130,560 KB
testcase_04 AC 1,135 ms
83,712 KB
testcase_05 AC 300 ms
154,560 KB
testcase_06 AC 381 ms
82,176 KB
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 AC 1,915 ms
156,320 KB
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
権限があれば一括ダウンロードができます

ソースコード

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