結果
問題 | No.137 貯金箱の焦り |
ユーザー | 👑 rin204 |
提出日時 | 2022-10-02 15:29:37 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 744 bytes |
コンパイル時間 | 381 ms |
コンパイル使用メモリ | 82,476 KB |
実行使用メモリ | 76,544 KB |
最終ジャッジ日時 | 2024-06-07 06:26:46 |
合計ジャッジ時間 | 9,656 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 64 ms
66,560 KB |
testcase_01 | AC | 47 ms
60,160 KB |
testcase_02 | AC | 65 ms
62,976 KB |
testcase_03 | AC | 39 ms
51,712 KB |
testcase_04 | AC | 880 ms
73,856 KB |
testcase_05 | AC | 131 ms
63,616 KB |
testcase_06 | AC | 299 ms
67,968 KB |
testcase_07 | AC | 159 ms
65,024 KB |
testcase_08 | AC | 190 ms
65,792 KB |
testcase_09 | AC | 372 ms
68,992 KB |
testcase_10 | AC | 190 ms
65,792 KB |
testcase_11 | AC | 48 ms
58,624 KB |
testcase_12 | TLE | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
ソースコード
MOD = 1234567891 def multiply(A, B): n = len(A) m = len(B) C = [0] * (n + m - 1) for i, a in enumerate(A): for j, b in enumerate(B): C[i + j] += a * b C[i + j] %= MOD return C # [x ^ n] P(x) / Q(x) def BostanMori(P, Q, n): while n: R = [(x * (-1) ** (i % 2)) % MOD for i, x in enumerate(Q)] Q = multiply(Q, R)[::2] P = multiply(P, R)[n % 2::2] n >>= 1 return P[0] * pow(Q[0], MOD - 2, MOD) % MOD n, m = map(int, input().split()) A = list(map(int, input().split())) tot = sum(A) dp = [0] * (tot + 1) dp[0] = 1 for a in A: for i in range(tot, a - 1, -1): dp[i] -= dp[i - a] dp[i] %= MOD ans = BostanMori([1], dp, m) print(ans)