結果
問題 | No.1629 Sorting Integers (SUM of M) |
ユーザー | FromBooska |
提出日時 | 2023-04-08 16:27:06 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 924 bytes |
コンパイル時間 | 399 ms |
コンパイル使用メモリ | 82,000 KB |
実行使用メモリ | 83,312 KB |
最終ジャッジ日時 | 2024-10-03 12:09:50 |
合計ジャッジ時間 | 4,221 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 35 ms
57,600 KB |
testcase_01 | AC | 34 ms
52,608 KB |
testcase_02 | AC | 34 ms
52,224 KB |
testcase_03 | AC | 34 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 | -- | - |
ソースコード
# 各数字ごとに、各桁に何回出るか考える、寄与分 N = int(input()) C = [0] + list(map(int, input().split())) # nCr 高速化 def nCr(N, R, MOD): numerator = 1 for n in range(N-R+1, N+1): numerator *= n numerator %= MOD #ここをnumerator *= n%MODだとアウト、ちゃんとmodされていかないので低速 denom = 1 for r in range(1, R+1): denom *= r denom %= MOD denom_inverse = pow(denom, MOD-2, MOD) return numerator * denom_inverse %MOD mod = 10**9+7 total = 1 N_remainder = N for i in range(1, 10): if C[i] > 0: total *= nCr(N_remainder, C[i], mod) total %= mod N_remainder -= C[i] nCr_list = [0] for i in range(1, 10): calc = total*C[i]//N nCr_list.append(calc) ans = 0 for d in range(N): for i in range(10): ans += i*nCr_list[i]*(10**d) ans %= mod print(ans%mod)