結果

問題 No.1973 Divisor Sequence
ユーザー ああいいああいい
提出日時 2022-06-12 07:44:07
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 831 bytes
コンパイル時間 304 ms
コンパイル使用メモリ 82,132 KB
実行使用メモリ 91,328 KB
最終ジャッジ日時 2024-09-22 17:33:41
合計ジャッジ時間 4,894 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
59,604 KB
testcase_01 AC 40 ms
52,356 KB
testcase_02 AC 68 ms
68,292 KB
testcase_03 AC 51 ms
60,544 KB
testcase_04 AC 67 ms
67,496 KB
testcase_05 AC 51 ms
58,724 KB
testcase_06 AC 51 ms
61,828 KB
testcase_07 AC 54 ms
61,416 KB
testcase_08 AC 57 ms
61,300 KB
testcase_09 AC 66 ms
66,560 KB
testcase_10 AC 97 ms
76,412 KB
testcase_11 AC 65 ms
67,448 KB
testcase_12 AC 60 ms
62,704 KB
testcase_13 AC 52 ms
63,280 KB
testcase_14 TLE -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M = map(int,input().split())
P = 10 ** 9 + 7

div = []
i = 1
while i * i <= M:
    if M % i == 0:
        div.append(i)
        if i != M // i:
            div.append(M // i)
    i += 1
n = len(div)
R = [[0] * n for _ in range(n)]
for i in range(n):
    p = div[i]
    for j in range(n):
        q = div[j]
        if M % (p * q) == 0:
            R[j][i] += 1
def seki(x,y):
    l = [[0] * n for _ in range(n)]
    for i in range(n):
        for j in range(n):
            for k in range(n):
                l[i][j] += x[i][k] * y[k][j]
            l[i][j] %= P
    return l
e = [[0] * n for _ in range(n)]
for i in range(n):
    e[i][i] = 1
u = N - 1
while u:
    if u & 1:
        e = seki(e,R)
    R = seki(R,R)
    u >>= 1
ans = 0
for i in range(n):
    for j in range(n):
        ans += e[i][j]
        ans %= P
print(ans)
0