1791: 不定方程求解【小学奥数7650】
Memory Limit:128 MB
Time Limit:1.000 S
Judge Style:Text Compare
Creator:
Submit:26
Solved:12
Description
给定正整数a,b,c。求不定方程 ax+by=c 关于未知数x和y的所有非负整数解组数。
提示:既然x、y为非负数,那么可以采用遍历的算法来找出有多少种组数
Input
一行,包含三个正整数a,b,c,两个整数之间用单个空格隔开。每个数均不大于1000。
Output
一个整数,即不定方程的非负整数解组数
Sample Input Copy
2 3 18
Sample Output Copy
4