結果
問題 | No.793 うし数列 2 |
ユーザー | neterukun |
提出日時 | 2019-05-17 21:02:44 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 764 bytes |
コンパイル時間 | 85 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 83,616 KB |
最終ジャッジ日時 | 2024-09-17 06:00:49 |
合計ジャッジ時間 | 5,035 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 26 ms
17,568 KB |
testcase_01 | AC | 27 ms
10,624 KB |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | AC | 27 ms
10,624 KB |
testcase_05 | AC | 1,049 ms
31,232 KB |
testcase_06 | TLE | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
ソースコード
class Combination: def __init__(self, n, MOD): self.fact = [1] for i in range(1, n + 1): self.fact.append(self.fact[-1] * i % MOD) self.inv_fact = [pow(self.fact[i] ,MOD - 2 ,MOD) for i in range(n + 1)] self.MOD = MOD def factorial(self, k): '''k!を求める''' return self.fact[k] def inverse_factorial(self, k): '''k!の逆元を求める''' return self.inv_fact[k] def combination(self, k, r): '''kCrを求める''' return (self.fact[k] * self.inv_fact[k - r] * self.inv_fact[r]) % self.MOD n = int(input()) MOD = 10**9 + 7 comb = Combination(n, MOD) ans = (pow(10, n, MOD)*4 - 1) * comb.inverse_factorial(3) * 2 ans %= MOD print(ans)