結果

問題 No.1629 Sorting Integers (SUM of M)
ユーザー Nishin-0141Nishin-0141
提出日時 2022-01-28 19:46:35
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,231 ms / 2,000 ms
コード長 737 bytes
コンパイル時間 125 ms
コンパイル使用メモリ 12,288 KB
実行使用メモリ 26,272 KB
最終ジャッジ日時 2024-06-09 12:29:49
合計ジャッジ時間 8,855 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,496 KB
testcase_01 AC 25 ms
10,624 KB
testcase_02 AC 23 ms
10,368 KB
testcase_03 AC 24 ms
10,752 KB
testcase_04 AC 509 ms
16,936 KB
testcase_05 AC 134 ms
12,288 KB
testcase_06 AC 165 ms
12,672 KB
testcase_07 AC 729 ms
20,008 KB
testcase_08 AC 544 ms
17,572 KB
testcase_09 AC 640 ms
18,980 KB
testcase_10 AC 560 ms
17,572 KB
testcase_11 AC 377 ms
15,264 KB
testcase_12 AC 585 ms
17,828 KB
testcase_13 AC 638 ms
18,600 KB
testcase_14 AC 428 ms
16,164 KB
testcase_15 AC 659 ms
18,980 KB
testcase_16 AC 653 ms
18,984 KB
testcase_17 AC 1,231 ms
26,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def per(n: int, r: list, mod: int):
    """同じものを含む順列の計算"""
    global fact, factinv
    num = fact[n]
    for i in r:
        if i:
            num *= factinv[i]
            num %= mod
    return num


n = int(input())
c = list(map(int, input().split()))
mod = 10**9 + 7

# n までのそれぞれの階乗計算(mod 含む)
fact = [1, 1]
factinv = [1, 1]
for i in range(2, n+1):
    fact.append(fact[-1] * i % mod)
    factinv.append(pow(fact[-1], mod - 2, mod))

cnt = 0
for i in range(9):
    check = False
    if c[i]:
        c[i] -= 1
        cnt += per(n - 1, c, mod) * (i + 1) % mod
        c[i] += 1
# print(cnt)

ans = 0
for i in range(n):
    ans += cnt * pow(10, i, mod)
    ans %= mod
print(ans)
0