結果

問題 No.644 G L C C D M
ユーザー shotoyooshotoyoo
提出日時 2021-06-18 00:48:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 65 ms / 2,000 ms
コード長 591 bytes
コンパイル時間 733 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 62,976 KB
最終ジャッジ日時 2024-06-11 19:02:29
合計ジャッジ時間 3,035 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,224 KB
testcase_01 AC 37 ms
51,712 KB
testcase_02 AC 37 ms
51,968 KB
testcase_03 AC 37 ms
52,352 KB
testcase_04 AC 37 ms
51,712 KB
testcase_05 AC 37 ms
51,968 KB
testcase_06 AC 37 ms
51,968 KB
testcase_07 AC 36 ms
51,840 KB
testcase_08 AC 41 ms
58,624 KB
testcase_09 AC 41 ms
58,752 KB
testcase_10 AC 45 ms
59,776 KB
testcase_11 AC 48 ms
61,312 KB
testcase_12 AC 50 ms
61,824 KB
testcase_13 AC 48 ms
61,952 KB
testcase_14 AC 49 ms
62,080 KB
testcase_15 AC 48 ms
61,952 KB
testcase_16 AC 48 ms
62,208 KB
testcase_17 AC 38 ms
52,352 KB
testcase_18 AC 37 ms
52,736 KB
testcase_19 AC 38 ms
52,096 KB
testcase_20 AC 37 ms
51,712 KB
testcase_21 AC 50 ms
61,824 KB
testcase_22 AC 64 ms
62,976 KB
testcase_23 AC 63 ms
62,336 KB
testcase_24 AC 65 ms
62,336 KB
testcase_25 AC 65 ms
62,592 KB
testcase_26 AC 64 ms
62,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda : sys.stdin.readline().rstrip()

sys.setrecursionlimit(2*10**5+10)
write = lambda x: sys.stdout.write(x+"\n")
debug = lambda x: sys.stderr.write(x+"\n")
writef = lambda x: print("{:.12f}".format(x))


n,m = list(map(int, input().split()))
M = 10**9+7
vals = [0]*(n+1)
v = 0
v2 = 0
if m>n:
    ans = 0
else:
    for i in range(1,n+1)[::-1]:
        v = (n//i)*(n//i-1)%M
        for j in range(2*i,n+1,i):
            v -= vals[j]
            v %= M
        vals[i] = v
    ans = vals[m] % M
    for i in range(2, n-1):
        ans *= i
        ans %= M
print(ans%M)
0