結果

問題 No.2120 場合の数の下8桁
ユーザー ShirotsumeShirotsume
提出日時 2022-11-04 22:12:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,718 ms / 2,000 ms
コード長 1,024 bytes
コンパイル時間 278 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 240,032 KB
最終ジャッジ日時 2024-07-18 20:02:09
合計ジャッジ時間 22,712 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 923 ms
200,576 KB
testcase_01 AC 925 ms
200,320 KB
testcase_02 AC 924 ms
200,448 KB
testcase_03 AC 926 ms
200,320 KB
testcase_04 AC 906 ms
200,576 KB
testcase_05 AC 931 ms
200,576 KB
testcase_06 AC 1,023 ms
239,520 KB
testcase_07 AC 931 ms
200,192 KB
testcase_08 AC 942 ms
200,704 KB
testcase_09 AC 939 ms
200,960 KB
testcase_10 AC 974 ms
238,592 KB
testcase_11 AC 1,033 ms
240,032 KB
testcase_12 AC 939 ms
200,576 KB
testcase_13 AC 962 ms
201,344 KB
testcase_14 AC 947 ms
202,496 KB
testcase_15 AC 1,173 ms
238,336 KB
testcase_16 AC 1,041 ms
235,952 KB
testcase_17 AC 1,718 ms
238,364 KB
testcase_18 AC 961 ms
200,192 KB
testcase_19 AC 1,707 ms
240,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
mi = lambda: map(int, input().split())
li = lambda: list(mi())
inf = 2 ** 63 - 1
mod = 10 ** 8

table = [True] * (10 ** 7 + 10)
table[0] = table[1] = False

for i in range(2, 10 ** 7 + 5):
    if table[i]:
        for j in range(2 * i, 10 ** 7 + 5, i):
            table[j] = False
p = []

for i in range(2, 10 ** 7 + 5):
    if table[i]:
        p.append(i)
def choose(n, r):
    if n < 0 or r < 0 or n < r:
        return 0
    if r > n // 2: r = n - r
    a = [n - i for i in range(n)]
    for i in range(r, n):
        a[i] = 0

    for v in p:
        if v > r:
            break
        q = v
        while q <= r:
            m = n % q
            i = m
            for j in range(r // q):
                a[i] //= v
                i += q
            q *= v
    mul = 1
    for i in range(r):
        mul = mul * a[i] % mod

    return mul

m = ii()
n = ii()

ans = str(choose(m, n))

ans = '0' * (8 - len(ans)) + ans

print(ans)



0