結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
59,552 KB
testcase_01 AC 39 ms
53,420 KB
testcase_02 AC 75 ms
69,088 KB
testcase_03 AC 51 ms
61,552 KB
testcase_04 AC 67 ms
66,740 KB
testcase_05 AC 51 ms
59,456 KB
testcase_06 AC 52 ms
61,476 KB
testcase_07 AC 55 ms
60,820 KB
testcase_08 AC 57 ms
61,472 KB
testcase_09 AC 65 ms
66,560 KB
testcase_10 AC 96 ms
76,240 KB
testcase_11 AC 65 ms
68,096 KB
testcase_12 AC 60 ms
63,576 KB
testcase_13 AC 53 ms
62,624 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)
s = set(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 p * q in s:
            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