結果

問題 No.2120 場合の数の下8桁
ユーザー flygonflygon
提出日時 2022-11-04 23:03:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 717 ms / 2,000 ms
コード長 556 bytes
コンパイル時間 301 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 246,216 KB
最終ジャッジ日時 2024-07-18 20:57:56
合計ジャッジ時間 5,921 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
51,968 KB
testcase_01 AC 33 ms
51,968 KB
testcase_02 AC 34 ms
51,584 KB
testcase_03 AC 34 ms
51,712 KB
testcase_04 AC 34 ms
51,968 KB
testcase_05 AC 34 ms
51,968 KB
testcase_06 AC 694 ms
245,948 KB
testcase_07 AC 34 ms
51,840 KB
testcase_08 AC 34 ms
52,096 KB
testcase_09 AC 46 ms
64,088 KB
testcase_10 AC 316 ms
167,604 KB
testcase_11 AC 702 ms
245,828 KB
testcase_12 AC 41 ms
60,800 KB
testcase_13 AC 49 ms
64,620 KB
testcase_14 AC 58 ms
68,224 KB
testcase_15 AC 325 ms
165,088 KB
testcase_16 AC 663 ms
237,956 KB
testcase_17 AC 717 ms
243,292 KB
testcase_18 AC 33 ms
52,096 KB
testcase_19 AC 707 ms
246,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

m = int(input())
n = int(input())
if n > m:
  print("0"*8)
  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