結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,204 KB
testcase_01 AC 33 ms
52,892 KB
testcase_02 AC 34 ms
52,568 KB
testcase_03 AC 32 ms
52,408 KB
testcase_04 AC 32 ms
52,880 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 32 ms
52,568 KB
testcase_10 AC 40 ms
58,320 KB
testcase_11 WA -
testcase_12 AC 38 ms
59,208 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 35 ms
59,240 KB
testcase_16 AC 35 ms
57,804 KB
testcase_17 AC 34 ms
58,360 KB
testcase_18 AC 35 ms
57,516 KB
testcase_19 AC 31 ms
53,124 KB
testcase_20 AC 35 ms
59,172 KB
testcase_21 AC 37 ms
57,992 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 36 ms
58,444 KB
testcase_26 AC 35 ms
58,912 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
    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