結果
問題 | No.1629 Sorting Integers (SUM of M) |
ユーザー | ruler |
提出日時 | 2021-07-31 12:27:48 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,706 bytes |
コンパイル時間 | 96 ms |
コンパイル使用メモリ | 12,928 KB |
実行使用メモリ | 64,668 KB |
最終ジャッジ日時 | 2024-09-16 09:26:24 |
合計ジャッジ時間 | 14,945 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 625 ms
64,144 KB |
testcase_01 | AC | 620 ms
64,204 KB |
testcase_02 | AC | 627 ms
64,032 KB |
testcase_03 | AC | 625 ms
64,248 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
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] class Inverse(): def __call__( self, i: int, ) -> int: return self[i] def __getitem__( self, i: int, ) -> int: return self.__a[i] def __init__( self, n: int, modulo: int, ) -> typing.NoReturn: m = modulo fn = ModFactorial(m) a = fn.inv(n) a[1:] *= fn(n - 1) self.__a = a % m def main() -> typing.NoReturn: mod = 10 ** 9 + 7 fn = ModFactorial(mod) fact = fn(1 << 18) ifact = fn.inv(1 << 18) inv = Inverse(1 << 18, mod) 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 s = (np.arange(9) + 1) * c s = s.sum() % mod s *= inv[n] d = 0 for _ in range(n): d *= 10 d += 1 d %= mod s = s * d % mod * m % mod print(s) main()