結果

問題 No.890 移調の限られた旋法
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-09-30 04:20:05
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 544 bytes
コンパイル時間 189 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 200,740 KB
最終ジャッジ日時 2024-09-30 04:20:15
合計ジャッジ時間 7,573 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,352 KB
testcase_01 AC 36 ms
51,840 KB
testcase_02 AC 38 ms
51,968 KB
testcase_03 AC 36 ms
51,968 KB
testcase_04 AC 34 ms
51,968 KB
testcase_05 WA -
testcase_06 AC 33 ms
51,968 KB
testcase_07 AC 32 ms
51,968 KB
testcase_08 AC 34 ms
51,840 KB
testcase_09 AC 32 ms
51,968 KB
testcase_10 AC 35 ms
51,968 KB
testcase_11 AC 34 ms
51,712 KB
testcase_12 AC 33 ms
51,968 KB
testcase_13 AC 35 ms
51,968 KB
testcase_14 AC 408 ms
200,740 KB
testcase_15 AC 425 ms
200,612 KB
testcase_16 AC 425 ms
200,604 KB
testcase_17 AC 351 ms
181,648 KB
testcase_18 AC 350 ms
181,532 KB
testcase_19 AC 219 ms
120,932 KB
testcase_20 AC 158 ms
95,976 KB
testcase_21 AC 88 ms
81,024 KB
testcase_22 AC 293 ms
150,688 KB
testcase_23 AC 368 ms
183,204 KB
testcase_24 AC 233 ms
121,572 KB
testcase_25 AC 106 ms
89,984 KB
testcase_26 AC 396 ms
183,972 KB
testcase_27 AC 372 ms
184,356 KB
testcase_28 AC 261 ms
134,944 KB
testcase_29 AC 180 ms
102,460 KB
testcase_30 AC 368 ms
181,404 KB
testcase_31 AC 217 ms
120,672 KB
testcase_32 AC 325 ms
165,540 KB
testcase_33 AC 33 ms
51,968 KB
testcase_34 AC 337 ms
167,068 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k=map(int,input().split())
if n==k:
  print(1)
  exit()
M=10**9+7
fa=[1,1]
fb=[1,1]
for i in range(2,n+1):
  fa+=[fa[-1]*i%M]
  fb+=[fb[-1]*(M//i)*fb[M%i]*fa[M%i-1]*(-1)%M]
c=lambda n,k:fa[n]*fb[k]*fb[n-k]%M if n>=k else 0
q=[0]*(n+1)
for i in range(2,n+1):
  if n%i==0 and k%i==0:
    q[i]=c(n//i,k//i)
l=n
P=[1]*(l+1)
for i in range(2,l+1):
  if P[i]:
    for j in range(i+i,l+1,i):
      P[j]=0
P=[i for i in range(2,l+1) if P[i]]
for p in P:
  for i in range(2,n+1):
    if i*p<=n:
      q[i]-=q[i*p]
    else:
      break
print(sum(q)%M)
0