結果

問題 No.2120 場合の数の下8桁
ユーザー タコイモタコイモ
提出日時 2022-11-04 22:47:29
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 320 bytes
コンパイル時間 139 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 16,476 KB
最終ジャッジ日時 2024-07-18 20:43:53
合計ジャッジ時間 4,973 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
16,128 KB
testcase_01 AC 24 ms
10,752 KB
testcase_02 AC 24 ms
10,752 KB
testcase_03 AC 24 ms
10,624 KB
testcase_04 AC 24 ms
10,752 KB
testcase_05 AC 23 ms
10,624 KB
testcase_06 AC 25 ms
10,624 KB
testcase_07 RE -
testcase_08 RE -
testcase_09 AC 25 ms
10,752 KB
testcase_10 AC 26 ms
10,624 KB
testcase_11 AC 25 ms
10,624 KB
testcase_12 AC 25 ms
10,624 KB
testcase_13 AC 608 ms
12,160 KB
testcase_14 TLE -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
M = int(input())
from operator import mul
from functools import reduce

def cmb(n,r,mod):
    r = min(n-r,r)
    if r == 0: return 1
    over = reduce(mul, range(n, n - r, -1))
    under = reduce(mul, range(1,r + 1))
    return (over // under)%mod

a = cmb(N, M,10**8)
s = str(a)
print('0'*(8-len(s))+s)
0