結果

問題 No.1629 Sorting Integers (SUM of M)
ユーザー ryuusagiryuusagi
提出日時 2021-07-30 21:14:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 242 ms / 2,000 ms
コード長 557 bytes
コンパイル時間 151 ms
コンパイル使用メモリ 81,904 KB
実行使用メモリ 117,376 KB
最終ジャッジ日時 2024-09-15 22:26:18
合計ジャッジ時間 2,815 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,968 KB
testcase_01 AC 39 ms
52,096 KB
testcase_02 AC 39 ms
51,968 KB
testcase_03 AC 40 ms
52,224 KB
testcase_04 AC 85 ms
88,496 KB
testcase_05 AC 58 ms
68,480 KB
testcase_06 AC 60 ms
70,400 KB
testcase_07 AC 128 ms
99,456 KB
testcase_08 AC 106 ms
92,800 KB
testcase_09 AC 131 ms
95,360 KB
testcase_10 AC 106 ms
93,408 KB
testcase_11 AC 95 ms
87,168 KB
testcase_12 AC 143 ms
93,652 KB
testcase_13 AC 152 ms
96,244 KB
testcase_14 AC 122 ms
88,832 KB
testcase_15 AC 158 ms
98,944 KB
testcase_16 AC 155 ms
96,728 KB
testcase_17 AC 242 ms
117,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, *c = map(int, open(0).read().split())
a = 1
ans = 0

mod = 10 ** 9 + 7
fact = [1, 1]
finv = [1, 1]
inv = [0, 1]
for i in range(2, n + 1):
    fact.append((fact[-1] * i) % mod)
    inv.append((inv[mod % i] * (mod - mod // i)) % mod)
    finv.append((finv[-1] * inv[-1]) % mod)

for _ in range(n):
    for i in range(9):
        if c[i]:
            b = fact[n-1]
            for j in range(9):
                b *= finv[c[j] - (i == j)]
                b %= mod
            ans += (i + 1) * a * b
            ans %= mod
    a *= 10
    a %= mod
print(ans)
0