結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 29 ms
10,624 KB
testcase_04 AC 102 ms
13,952 KB
testcase_05 AC 48 ms
11,392 KB
testcase_06 AC 52 ms
11,520 KB
testcase_07 AC 131 ms
15,232 KB
testcase_08 AC 105 ms
14,080 KB
testcase_09 AC 119 ms
14,848 KB
testcase_10 AC 106 ms
14,080 KB
testcase_11 AC 80 ms
13,056 KB
testcase_12 AC 106 ms
14,208 KB
testcase_13 AC 115 ms
14,720 KB
testcase_14 AC 88 ms
13,312 KB
testcase_15 AC 125 ms
14,976 KB
testcase_16 AC 118 ms
14,848 KB
testcase_17 AC 196 ms
18,304 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 = 1
for i in range(N - 1):
    x *= i + 1
    x %= m
x *= (pow(10, N, m) + (m - 1)) % m * pow(9, -1, m) % m

result = 0
for i in range(9):
    result += c[i] * (i + 1) * x
    result %= m
for i in range(9):
    result *= pow(fac[c[i]], -1, m)
    result %= m
print(result)
0