結果

問題 No.1629 Sorting Integers (SUM of M)
ユーザー rulerruler
提出日時 2021-07-31 12:31:00
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 660 ms / 2,000 ms
コード長 1,711 bytes
コンパイル時間 151 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 64,476 KB
最終ジャッジ日時 2024-09-16 09:27:03
合計ジャッジ時間 13,183 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 645 ms
64,296 KB
testcase_01 AC 635 ms
64,136 KB
testcase_02 AC 637 ms
64,448 KB
testcase_03 AC 638 ms
64,352 KB
testcase_04 AC 652 ms
64,216 KB
testcase_05 AC 632 ms
64,276 KB
testcase_06 AC 638 ms
64,248 KB
testcase_07 AC 650 ms
64,388 KB
testcase_08 AC 636 ms
64,196 KB
testcase_09 AC 640 ms
64,192 KB
testcase_10 AC 640 ms
63,952 KB
testcase_11 AC 632 ms
64,476 KB
testcase_12 AC 638 ms
63,912 KB
testcase_13 AC 638 ms
64,348 KB
testcase_14 AC 633 ms
64,316 KB
testcase_15 AC 641 ms
64,436 KB
testcase_16 AC 644 ms
64,440 KB
testcase_17 AC 660 ms
64,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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()
  s *= inv[n]
  s %= mod
  d = 0
  for _ in range(n):
    d *= 10
    d += 1
    d %= mod
  s = s * d % mod * m % mod 
  print(s)


main()

  
0