結果
問題 | No.1629 Sorting Integers (SUM of M) |
ユーザー | SidewaysOwl |
提出日時 | 2021-07-30 21:06:02 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 356 bytes |
コンパイル時間 | 369 ms |
コンパイル使用メモリ | 82,432 KB |
実行使用メモリ | 86,016 KB |
最終ジャッジ日時 | 2024-09-15 21:48:35 |
合計ジャッジ時間 | 3,915 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 37 ms
57,984 KB |
testcase_01 | AC | 37 ms
51,584 KB |
testcase_02 | AC | 39 ms
51,840 KB |
testcase_03 | AC | 39 ms
52,224 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 | -- | - |
ソースコード
from itertools import permutations import math n = int(input()) c = list(map(int,input().split())) ans = 0 nn = math.factorial(n) for i in range(9): if c[i] != 0: nn //= math.factorial(c[i]) ans = 0 for i in range(9): if c[i] != 0: for j in range(n): ans += (i+1) * 10 ** j * c[i] * (nn // n) print(ans % (10 ** 9 + 7) )