結果

問題 No.2120 場合の数の下8桁
ユーザー flygonflygon
提出日時 2022-11-04 22:59:26
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 552 bytes
コンパイル時間 256 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 246,080 KB
最終ジャッジ日時 2024-07-18 20:54:52
合計ジャッジ時間 5,423 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
51,840 KB
testcase_01 AC 31 ms
52,096 KB
testcase_02 AC 31 ms
51,968 KB
testcase_03 AC 32 ms
51,968 KB
testcase_04 AC 35 ms
51,840 KB
testcase_05 AC 36 ms
52,096 KB
testcase_06 AC 664 ms
245,952 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 46 ms
64,128 KB
testcase_10 AC 317 ms
167,552 KB
testcase_11 AC 671 ms
245,700 KB
testcase_12 AC 47 ms
60,544 KB
testcase_13 AC 50 ms
64,640 KB
testcase_14 AC 56 ms
68,096 KB
testcase_15 AC 315 ms
164,700 KB
testcase_16 AC 673 ms
238,336 KB
testcase_17 AC 705 ms
243,300 KB
testcase_18 WA -
testcase_19 AC 696 ms
246,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

def e(n): #O(NloglogN)
  l = [i for i in range(n+1)]
  x = []
  for i in range(2,n+1):
    if l[i] == i:
      x.append(i)
      for p in range(i+i,n+1,i):
        l[p] = i
  return x

p = e(m)
d =[0]*(m+1)
for pn in p:
  now = pn
  cnt = 0
  while now <= m:
    cnt += m//now-(m-n)//now
    cnt -= n//now
    now *= pn
  d[pn] = cnt
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