結果

問題 No.1126 SUM
ユーザー realDivineJKrealDivineJK
提出日時 2020-09-25 09:18:33
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 966 ms / 1,000 ms
コード長 1,279 bytes
コンパイル時間 94 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 89,344 KB
最終ジャッジ日時 2024-06-28 05:45:05
合計ジャッジ時間 26,101 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 909 ms
89,344 KB
testcase_01 AC 898 ms
89,216 KB
testcase_02 AC 896 ms
89,216 KB
testcase_03 AC 861 ms
89,088 KB
testcase_04 AC 908 ms
89,216 KB
testcase_05 AC 879 ms
89,088 KB
testcase_06 AC 879 ms
89,088 KB
testcase_07 AC 941 ms
89,088 KB
testcase_08 AC 904 ms
89,088 KB
testcase_09 AC 885 ms
89,088 KB
testcase_10 AC 876 ms
89,088 KB
testcase_11 AC 920 ms
89,216 KB
testcase_12 AC 915 ms
89,216 KB
testcase_13 AC 966 ms
89,088 KB
testcase_14 AC 864 ms
89,216 KB
testcase_15 AC 863 ms
89,216 KB
testcase_16 AC 913 ms
89,216 KB
testcase_17 AC 885 ms
89,088 KB
testcase_18 AC 910 ms
89,088 KB
testcase_19 AC 879 ms
89,216 KB
testcase_20 AC 882 ms
89,216 KB
testcase_21 AC 888 ms
89,216 KB
testcase_22 AC 876 ms
89,216 KB
testcase_23 AC 923 ms
89,344 KB
testcase_24 AC 923 ms
89,088 KB
testcase_25 AC 918 ms
89,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = int(1e9) + 7 # <-- input modulo
maxf = 1000000           # <-- input factional limitation

def make_fact(n, k):
    tmp = n
    perm = [i for i in range(k)]
    L = [0 for _ in range(k)]
    for i in range(k):
        L[i] = tmp % (i + 1)
        tmp //= i + 1
    LL = [0 for _ in range(k)]
    for i in range(k):
        LL[i] = perm[L[-i-1]]
        for j in range(L[-i-1]+1, k):
            perm[j-1] = perm[j]
    return LL

def doubling(n, m, modulo=mod):
    y = 1
    base = n
    tmp = m
    while tmp != 0:
        if tmp % 2 == 1:
            y *= base
            if modulo > 0:
                y %= modulo
        base *= base
        if modulo > 0:
            base %= modulo
        tmp //= 2
    return y

def inved(a, modulo=mod):
    x, y, u, v, k, l = 1, 0, 0, 1, a, modulo
    while l != 0:
        x, y, u, v = u, v, x - u * (k // l), y - v * (k // l)
        k, l = l, k % l
    return x % modulo

fact = [1 for _ in range(maxf+1)]
invf = [1 for _ in range(maxf+1)]

for i in range(maxf):
    fact[i+1] = (fact[i] * (i+1)) % mod
invf[-1] = inved(fact[-1])
for i in range(maxf, 0, -1):
    invf[i-1] = (invf[i] * i) % mod

N, M = map(int, input().split())
S = 0
for i in range(N, M+1):
    S += fact[i] * invf[N] * invf[i-N] % mod
    S %= mod
print(S)
0