結果

問題 No.1973 Divisor Sequence
ユーザー terasaterasa
提出日時 2022-06-10 22:49:15
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,461 bytes
コンパイル時間 201 ms
コンパイル使用メモリ 82,368 KB
実行使用メモリ 328,040 KB
最終ジャッジ日時 2024-09-21 06:41:56
合計ジャッジ時間 8,868 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
62,908 KB
testcase_01 AC 44 ms
54,772 KB
testcase_02 AC 837 ms
173,756 KB
testcase_03 AC 101 ms
80,992 KB
testcase_04 AC 532 ms
133,248 KB
testcase_05 AC 189 ms
98,156 KB
testcase_06 AC 387 ms
130,888 KB
testcase_07 AC 156 ms
85,612 KB
testcase_08 AC 262 ms
105,052 KB
testcase_09 AC 466 ms
125,936 KB
testcase_10 AC 1,262 ms
158,048 KB
testcase_11 AC 145 ms
84,560 KB
testcase_12 AC 358 ms
119,976 KB
testcase_13 AC 184 ms
92,032 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 #

import sys
import pypyjit
import itertools
import heapq
import math
from collections import deque, defaultdict
import bisect

input = sys.stdin.readline
sys.setrecursionlimit(10 ** 6)
pypyjit.set_param('max_unroll_recursion=-1')


def index_lt(a, x):
    'return largest index s.t. A[i] < x or -1 if it does not exist'
    return bisect.bisect_left(a, x) - 1


def index_le(a, x):
    'return largest index s.t. A[i] <= x or -1 if it does not exist'
    return bisect.bisect_right(a, x) - 1


def index_gt(a, x):
    'return smallest index s.t. A[i] > x or len(a) if it does not exist'
    return bisect.bisect_right(a, x)


def index_ge(a, x):
    'return smallest index s.t. A[i] >= x or len(a) if it does not exist'
    return bisect.bisect_left(a, x)


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


def divs(n):
    d = []
    for i in range(1, n + 1):
        if i * i > n:
            break
        if i * i == n:
            d.append(i)
            break
        if n % i == 0:
            d.append(i)
            d.append(n // i)
    return sorted(d)


D = divs(M)
idx = {}
for i, n in enumerate(D):
    idx[n] = i
ds = []
for d in D:
    ds.append([idx[n] for n in divs(M // d)])

dp = [[0 for _ in range(len(D))] for _ in range(N + 1)]
for j in range(len(D)):
    dp[1][j] = 1
for i in range(1, N):
    for j in range(len(D)):
        for k in ds[j]:
            dp[i + 1][k] += dp[i][j]
            dp[i + 1][k] %= mod
print(sum(dp[N]) % mod)
0