結果

問題 No.644 G L C C D M
ユーザー vwxyzvwxyz
提出日時 2021-08-11 23:23:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 62 ms / 2,000 ms
コード長 634 bytes
コンパイル時間 385 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 65,024 KB
最終ジャッジ日時 2024-09-25 09:24:54
合計ジャッジ時間 2,540 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,480 KB
testcase_01 AC 41 ms
51,968 KB
testcase_02 AC 41 ms
51,840 KB
testcase_03 AC 40 ms
52,480 KB
testcase_04 AC 39 ms
52,096 KB
testcase_05 AC 39 ms
52,096 KB
testcase_06 AC 39 ms
51,712 KB
testcase_07 AC 39 ms
52,096 KB
testcase_08 AC 43 ms
57,856 KB
testcase_09 AC 43 ms
57,728 KB
testcase_10 AC 49 ms
59,264 KB
testcase_11 AC 54 ms
61,952 KB
testcase_12 AC 54 ms
61,696 KB
testcase_13 AC 55 ms
61,952 KB
testcase_14 AC 55 ms
62,080 KB
testcase_15 AC 53 ms
61,440 KB
testcase_16 AC 53 ms
61,568 KB
testcase_17 AC 41 ms
51,840 KB
testcase_18 AC 41 ms
52,224 KB
testcase_19 AC 40 ms
52,096 KB
testcase_20 AC 41 ms
51,960 KB
testcase_21 AC 52 ms
61,312 KB
testcase_22 AC 62 ms
64,512 KB
testcase_23 AC 61 ms
64,384 KB
testcase_24 AC 62 ms
65,024 KB
testcase_25 AC 61 ms
64,000 KB
testcase_26 AC 62 ms
64,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def Mebius(N):
    mebius=[1]*(N+1)
    mebius[0]=0
    is_prime=[True]*(N+1)
    is_prime[0]=False
    is_prime[1]=False
    for p in range(2,N+1):
        if is_prime[p]:
            for pp in range(p,N+1,p):
                mebius[pp]*=-1
                is_prime[pp]=False
            for pp in range(p**2,N+1,p**2):
                mebius[pp]=0
    return mebius

N,M=map(int,input().split())
ans=0
if N>=M:
    Me=Mebius(N)
    mod=10**9+7
    for i in range(1,N+1):
        if i%M:
            continue
        ans+=Me[i//M]*(N//i)*(N//i-1)
        ans%=mod
    for i in range(1,N-1):
        ans*=i
        ans%=mod
print(ans)
0