結果

問題 No.2120 場合の数の下8桁
ユーザー flygonflygon
提出日時 2022-11-04 22:51:49
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 528 bytes
コンパイル時間 335 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 237,696 KB
最終ジャッジ日時 2024-07-18 20:47:17
合計ジャッジ時間 4,133 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,840 KB
testcase_01 AC 34 ms
51,712 KB
testcase_02 AC 34 ms
51,712 KB
testcase_03 AC 36 ms
51,840 KB
testcase_04 AC 35 ms
52,096 KB
testcase_05 AC 35 ms
51,712 KB
testcase_06 TLE -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 40 ms
62,404 KB
testcase_10 AC 264 ms
152,292 KB
testcase_11 AC 616 ms
231,568 KB
testcase_12 AC 40 ms
60,320 KB
testcase_13 AC 52 ms
65,512 KB
testcase_14 AC 64 ms
68,660 KB
testcase_15 AC 829 ms
151,700 KB
testcase_16 TLE -
testcase_17 AC 1,584 ms
229,520 KB
testcase_18 WA -
testcase_19 AC 1,625 ms
232,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

m = int(input())
n = int(input())
if n > m:
  print(0)
  exit()
mod = 10**8

def e(n):
  l = [i for i in range(n+1)]
  for i in range(2,n):
    if l[i] == i:
      for p in range(i+i,n+1,i):
        l[p] = i
  return l

p = e(m)
d =[0]*(m+1)
for i in range(n):
  now = m-i
  while now != 1:
    d[p[now]] += 1
    now //= p[now]
  i += 1
  while i != 1:
    d[p[i]] -= 1
    i //= p[i]

ans = 1
for k,v in enumerate(d):
  if v == 0: continue
  ans *= pow(k,v,mod)
  ans %= mod

ans = str(ans)
print("0"*(8-len(ans)) + ans)



  
0