結果

問題 No.1629 Sorting Integers (SUM of M)
ユーザー rulerruler
提出日時 2021-07-30 20:59:55
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 453 bytes
コンパイル時間 162 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 260,480 KB
最終ジャッジ日時 2024-09-15 21:20:37
合計ジャッジ時間 4,561 ms
ジャッジサーバーID
(参考情報)
judge6 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
71,808 KB
testcase_01 AC 71 ms
66,432 KB
testcase_02 AC 72 ms
66,560 KB
testcase_03 AC 396 ms
144,120 KB
testcase_04 TLE -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import typing 
from itertools import (
  permutations,
)


def main() -> typing.NoReturn:
  mod = 10 ** 9 + 7
  n = int(input())
  *c, = map(
    int, input().split(),
  )
  a = []
  for i in range(9):
    a += [i + 1] * c[i]

  perms = set(permutations(a))
  s = [0] * n
  for p in perms:
    for i in range(n):
      s[i] += p[i]
      s[i] %= mod
  
  d = 1
  tot = 0
  for i in range(n):
    tot += d * s[i]
    d *= 10
  print(tot % mod)

main()
  
0