結果

問題 No.1629 Sorting Integers (SUM of M)
ユーザー c-yanc-yan
提出日時 2021-07-31 09:00:32
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 130 ms / 2,000 ms
コード長 401 bytes
コンパイル時間 93 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 18,432 KB
最終ジャッジ日時 2024-09-16 09:08:36
合計ジャッジ時間 1,963 ms
ジャッジサーバーID
(参考情報)
judge6 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 28 ms
10,624 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 75 ms
13,824 KB
testcase_05 AC 40 ms
11,264 KB
testcase_06 AC 42 ms
11,648 KB
testcase_07 AC 91 ms
15,232 KB
testcase_08 AC 78 ms
14,080 KB
testcase_09 AC 85 ms
14,848 KB
testcase_10 AC 74 ms
14,080 KB
testcase_11 AC 63 ms
13,056 KB
testcase_12 AC 78 ms
14,208 KB
testcase_13 AC 81 ms
14,592 KB
testcase_14 AC 63 ms
13,440 KB
testcase_15 AC 85 ms
14,976 KB
testcase_16 AC 82 ms
14,848 KB
testcase_17 AC 130 ms
18,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

m = 1000000007

N, *c = map(int, open(0).read().split())

fac = [1] * (N + 1)
for i in range(N):
    fac[i + 1] = fac[i] * (i + 1)
    fac[i + 1] %= m

x = fac[N - 1] * (pow(10, N, m) - 1) * pow(9, -1, m) % m
frac = 0
denom = 1
for i in range(9):
    if c[i] == 0:
        continue
    frac += c[i] * (i + 1) * x
    frac %= m
    denom *= pow(fac[c[i]], -1, m)
    denom %= m
print(frac * denom % m)
0