結果

問題 No.2120 場合の数の下8桁
ユーザー googol_S0googol_S0
提出日時 2022-11-04 21:44:11
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 476 bytes
コンパイル時間 131 ms
コンパイル使用メモリ 82,180 KB
実行使用メモリ 70,784 KB
最終ジャッジ日時 2024-07-18 19:27:58
合計ジャッジ時間 3,784 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,136 KB
testcase_01 AC 32 ms
51,968 KB
testcase_02 AC 308 ms
57,472 KB
testcase_03 AC 182 ms
57,856 KB
testcase_04 AC 83 ms
57,728 KB
testcase_05 AC 32 ms
51,840 KB
testcase_06 AC 58 ms
57,344 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 37 ms
57,472 KB
testcase_10 AC 47 ms
57,472 KB
testcase_11 AC 280 ms
58,240 KB
testcase_12 AC 85 ms
57,984 KB
testcase_13 AC 226 ms
69,504 KB
testcase_14 AC 389 ms
68,096 KB
testcase_15 AC 166 ms
67,584 KB
testcase_16 AC 283 ms
64,768 KB
testcase_17 AC 433 ms
69,504 KB
testcase_18 WA -
testcase_19 AC 237 ms
70,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

M=int(input())
N=int(input())
mod=10**8
if M<N:
  print(0)
  exit()
N=min(N,M-N)
c2=0
c5=0
A=1
B=1
for i in range(1,M+1):
  if i<=N:
    while i&1==0:
      i>>=1
      c2-=1
    while i%5==0:
      i//=5
      c5-=1
    B=B*i%mod
  elif M-N<i:
    while i&1==0:
      i>>=1
      c2+=1
    while i%5==0:
      i//=5
      c5+=1
    A=A*i%mod
for i in range(mod):
  if i*B%mod==1:
    B=i
    break
S=str(A*B*pow(2,c2,mod)*pow(5,c5,mod)%mod)
while len(S)<8:
  S='0'+S
print(S)
0