結果

問題 No.644 G L C C D M
ユーザー titiatitia
提出日時 2024-08-22 02:10:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 385 ms / 2,000 ms
コード長 637 bytes
コンパイル時間 453 ms
コンパイル使用メモリ 82,468 KB
実行使用メモリ 76,724 KB
最終ジャッジ日時 2024-08-22 02:10:47
合計ジャッジ時間 3,476 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,468 KB
testcase_01 AC 33 ms
51,948 KB
testcase_02 AC 34 ms
53,212 KB
testcase_03 AC 33 ms
53,624 KB
testcase_04 AC 35 ms
52,996 KB
testcase_05 AC 35 ms
53,916 KB
testcase_06 AC 34 ms
52,492 KB
testcase_07 AC 34 ms
53,064 KB
testcase_08 AC 33 ms
53,144 KB
testcase_09 AC 34 ms
52,436 KB
testcase_10 AC 35 ms
58,264 KB
testcase_11 AC 53 ms
65,988 KB
testcase_12 AC 37 ms
58,520 KB
testcase_13 AC 79 ms
76,724 KB
testcase_14 AC 45 ms
61,884 KB
testcase_15 AC 36 ms
57,884 KB
testcase_16 AC 36 ms
58,392 KB
testcase_17 AC 37 ms
58,068 KB
testcase_18 AC 36 ms
58,484 KB
testcase_19 AC 35 ms
52,772 KB
testcase_20 AC 37 ms
59,184 KB
testcase_21 AC 35 ms
58,632 KB
testcase_22 AC 385 ms
76,320 KB
testcase_23 AC 175 ms
76,508 KB
testcase_24 AC 139 ms
76,080 KB
testcase_25 AC 37 ms
57,772 KB
testcase_26 AC 38 ms
58,104 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd,lcm

N,M=map(int,input().split())

mod=10**9+7

# オイラーのトーシェント関数

import math 
def euler_totient(x):
    ANS=x
    
    # 素因数分解
    L=int(math.sqrt(x))

    FACT=dict()

    for i in range(2,L+2):
        while x%i==0:
            FACT[i]=FACT.get(i,0)+1
            x=x//i

    if x!=1:
        FACT[x]=FACT.get(x,0)+1

    # φ(x)=x(1-1/p_1)...(1-1/p_m)という性質を使って計算

    for f in FACT:
        ANS=ANS*(f-1)//f

    return ANS

score=0

for i in range(2,N//M+1):
    score+=euler_totient(i)

ANS=score*2

for i in range(1,N-1):
    ANS=ANS*i%mod

print(ANS)
0