B - Coins

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/q451792269/article/details/80787551

B. Coins
time limit per test2 seconds
memory limit per test256 megabytes
inputstandard input
outputstandard output
In Berland a money reform is being prepared. New coins are being introduced. After long economic calculations was decided that the most expensive coin should possess the denomination of exactly n Berland dollars. Also the following restriction has been introduced for comfort: the denomination of each coin should be divisible by the denomination of any cheaper coin. It is known that among all the possible variants the variant with the largest number of new coins will be chosen. Find this variant. Print in the order of decreasing of the coins’ denominations.

Input
The first and only line contains an integer n (1 ≤ n ≤ 106) which represents the denomination of the most expensive coin.

Output
Print the denominations of all the coins in the order of decreasing. The number of coins must be the largest possible (with the given denomination n of the most expensive coin). Also, the denomination of every coin must be divisible by the denomination of any cheaper coin. Naturally, the denominations of all the coins should be different. If there are several solutins to that problem, print any of them.

Examples
inputCopy
10
outputCopy
10 5 1
inputCopy
4
outputCopy
4 2 1
inputCopy
3
outputCopy
3 1

题意:

后一个数是前一个数的因子

题解:

水题,从后往前枚举即可。

代码:

#include <iostream>
#include <cstdio>
#include <cstring>
#include <algorithm>
#include <string>
using namespace std;

int main()
{
    int n;
    cin>>n;
    for(int i=n;i>0;i--)
    {
        if(n%i==0)
        {
            cout<<i<<" ";
            n=i;
        }
    }
    return 0;
}

猜你喜欢

转载自blog.csdn.net/q451792269/article/details/80787551
今日推荐