#ABC110D. Factorization
Factorization
题目描述
You are given positive integers and .
How many sequences of length consisting of positive integers satisfy ? Find the count mod .
Here, two sequences and are considered different when there exists some such that .
给你正整数 和 。
长度为 的由正整数组成的序列 中,满足 的序列有多少个?求 mod 的个数。
这里,当存在某个 时, 和 被认为是不同的。
输入格式
输入内容按以下格式标准输入:
输出格式
打印满足条件的由正整数组成的序列的个数,模为 。
样例 #1
样例输入 #1
2 6
样例输出 #1
4
样例 #2
样例输入 #2
3 12
样例输出 #2
18
样例 #3
样例输入 #3
100000 1000000000
样例输出 #3
957870001
说明
数据规模与约定
- 输入值均为整数
样例 解释
四个序列满足条件: 和 .