結果

問題 No.2120 場合の数の下8桁
ユーザー testestesttestestest
提出日時 2022-10-02 22:10:44
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 363 bytes
コンパイル時間 298 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 81,664 KB
最終ジャッジ日時 2024-06-07 15:24:28
合計ジャッジ時間 4,266 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
57,472 KB
testcase_01 AC 35 ms
51,968 KB
testcase_02 AC 34 ms
51,840 KB
testcase_03 AC 37 ms
52,224 KB
testcase_04 AC 35 ms
51,968 KB
testcase_05 AC 35 ms
51,968 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 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD=10**8

M=int(input())
N=int(input())

if N>M:
	print("0"*8)
	exit()

ans=1
p2=0
p5=0
for i in range(N):
	nume=M-i
	deno=i+1
	while nume%2==0:
		nume//=2
		p2+=1
	while nume%5==0:
		nume//=5
		p5+=1
	while deno%2==0:
		deno//=2
		p2-=1
	while deno%5==0:
		deno//=5
		p5-=1
	ans=ans*nume*pow(deno,-1,MOD)%MOD

print(f"{ans*pow(2,p2,MOD)*pow(5,p5,MOD)%MOD:08d}")
0