結果

問題 No.644 G L C C D M
ユーザー koba-e964koba-e964
提出日時 2021-09-27 11:47:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 64 ms / 2,000 ms
コード長 484 bytes
コンパイル時間 318 ms
コンパイル使用メモリ 82,760 KB
実行使用メモリ 66,280 KB
最終ジャッジ日時 2024-07-06 07:06:03
合計ジャッジ時間 2,296 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,124 KB
testcase_01 AC 37 ms
52,812 KB
testcase_02 AC 38 ms
52,348 KB
testcase_03 AC 38 ms
53,216 KB
testcase_04 AC 38 ms
53,576 KB
testcase_05 AC 37 ms
52,132 KB
testcase_06 AC 38 ms
53,412 KB
testcase_07 AC 37 ms
52,740 KB
testcase_08 AC 38 ms
52,432 KB
testcase_09 AC 38 ms
52,744 KB
testcase_10 AC 41 ms
58,676 KB
testcase_11 AC 43 ms
59,156 KB
testcase_12 AC 41 ms
58,892 KB
testcase_13 AC 53 ms
64,560 KB
testcase_14 AC 41 ms
58,172 KB
testcase_15 AC 40 ms
58,344 KB
testcase_16 AC 40 ms
58,284 KB
testcase_17 AC 40 ms
59,096 KB
testcase_18 AC 40 ms
58,136 KB
testcase_19 AC 37 ms
52,336 KB
testcase_20 AC 40 ms
57,524 KB
testcase_21 AC 40 ms
58,000 KB
testcase_22 AC 64 ms
66,280 KB
testcase_23 AC 57 ms
64,960 KB
testcase_24 AC 56 ms
65,892 KB
testcase_25 AC 41 ms
57,648 KB
testcase_26 AC 42 ms
58,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3

n, m = map(int, input().split())
q = n // m
mod = pow(10, 9) + 7

moe = [1] * (q + 1)
fac = [1] * (q + 1)
for i in range(2, q + 1):
    if fac[i] != 1:
        continue
    fac[i] = i
    moe[i] = -1
    for j in range(2 * i, q + 1, i):
        fac[j] = i
        moe[j] = -moe[j] if j // i % i != 0 else 0

ans = 0
for i in range(1, q + 1):
    ans += (q // i) * (q // i - 1) * moe[i]

ans %= mod
for i in range(1, n - 1):
    ans = ans * i % mod

print(ans)
0