結果
問題 | No.1629 Sorting Integers (SUM of M) |
ユーザー | ruler |
提出日時 | 2021-07-30 21:26:06 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,382 bytes |
コンパイル時間 | 660 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 56,112 KB |
最終ジャッジ日時 | 2024-09-15 22:56:26 |
合計ジャッジ時間 | 12,120 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 580 ms
55,912 KB |
testcase_01 | AC | 578 ms
56,036 KB |
testcase_02 | AC | 595 ms
55,656 KB |
testcase_03 | AC | 576 ms
55,916 KB |
testcase_04 | AC | 588 ms
56,028 KB |
testcase_05 | AC | 576 ms
55,772 KB |
testcase_06 | AC | 573 ms
55,788 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
ソースコード
import typing from math import factorial import numpy as np import sys class ModFactorial: def __call__( self, n: int = 1 << 20, ) -> np.array: a = np.arange(n); a[0] = 1 return self.cumprod(a) def cumprod( self, a: np.array, ) -> np.array: m = self.__mod l = len(a) n = int(np.sqrt(l) + 1) a = np.resize(a, (n, n)) for i in range(n-1): a[:, i + 1] *= a[:, i] a[:, i + 1] %= m for i in range(n-1): a[i + 1] *= a[i, -1] a[i + 1] %= m return np.ravel(a)[:l] def __init__( self, modulo: int, ) -> typing.NoReturn: self.__mod = modulo def inv( self, n: int = 1 << 20, ) -> np.array: a = np.arange(1, n + 1) m = self.__mod x = int(self(n)[-1]) a[-1] = pow(x, m - 2, m) return self.cumprod( a[::-1], )[n::-1] def main() -> typing.NoReturn: mod = 10 ** 9 + 7 fn = ModFactorial(mod) fact = fn(1 << 18) ifact = fn.inv(1 << 18) n = int(input()) c = np.array( sys.stdin.readline() .split(), dtype=np.int64, ) m = fact[n] for x in c: m *= ifact[x] m %= mod a = m * ifact[n] % mod * c a %= mod a *= fact[n - 1] a %= mod d = 1 sd = 0 for i in range(n): sd += d d *= 10 d %= mod s = sd * a % mod s *= np.arange(9) + 1 s %= mod print(s.sum() % mod) main()