結果
問題 | No.125 悪の花弁 |
ユーザー | maspy |
提出日時 | 2020-03-28 01:32:21 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 511 ms / 5,000 ms |
コード長 | 1,418 bytes |
コンパイル時間 | 80 ms |
コンパイル使用メモリ | 12,416 KB |
実行使用メモリ | 72,480 KB |
最終ジャッジ日時 | 2025-01-02 10:23:30 |
合計ジャッジ時間 | 4,841 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 443 ms
59,740 KB |
testcase_01 | AC | 457 ms
60,920 KB |
testcase_02 | AC | 511 ms
72,480 KB |
testcase_03 | AC | 509 ms
71,600 KB |
testcase_04 | AC | 465 ms
70,828 KB |
testcase_05 | AC | 471 ms
70,544 KB |
ソースコード
#!/usr/bin/ python3.8 import sys read = sys.stdin.buffer.read readline = sys.stdin.buffer.readline readlines = sys.stdin.buffer.readlines import numpy as np MOD = 10 ** 9 + 7 def cumprod(A, MOD=MOD): L = len(A) Lsq = int(L**.5 + 1) A = np.resize(A, Lsq**2).reshape(Lsq, Lsq) for n in range(1, Lsq): A[:, n] *= A[:, n - 1] A[:, n] %= MOD for n in range(1, Lsq): A[n] *= A[n - 1, -1] A[n] %= MOD return A.ravel()[:L] def make_fact(U, MOD=MOD): x = np.arange(U, dtype=np.int64) x[0] = 1 fact = cumprod(x, MOD) x = np.arange(U, 0, -1, dtype=np.int64) x[0] = pow(int(fact[-1]), MOD - 2, MOD) fact_inv = cumprod(x, MOD)[::-1] fact.flags.writeable = False fact_inv.flags.writeable = False return fact, fact_inv K = int(readline()) C = np.array(read().split(), np.int64) N = C.sum() D = np.gcd.reduce(C) x = np.arange(1, 1100) div = x[D % x == 0] div = np.union1d(div, D // div) fact, fact_inv = make_fact(N + 1) def f(d): num = fact[N // d] den = cumprod(fact_inv[C // d])[-1] return num * den % MOD dp = {d: f(d) for d in div} keys = sorted(div, reverse=True) for d in keys: x = dp[d] for e in keys: if e <= d or e % d != 0: continue x -= dp[e] dp[d] = x answer = sum(k * v for k, v in dp.items()) % MOD answer *= pow(int(N), MOD - 2, MOD) answer %= MOD print(answer)