zoukankan      html  css  js  c++  java
  • 1096. Consecutive Factors (20)

    Among all the factors of a positive integer N, there may exist several consecutive numbers. For example, 630 can be factored as 3*5*6*7, where 5, 6, and 7 are the three consecutive numbers. Now given any positive N, you are supposed to find the maximum number of consecutive factors, and list the smallest sequence of the consecutive factors.

    Input Specification:

    Each input file contains one test case, which gives the integer N (1<N<231).

    Output Specification:

    For each test case, print in the first line the maximum number of consecutive factors. Then in the second line, print the smallest sequence of the consecutive factors in the format "factor[1]*factor[2]*...*factor[k]", where the factors are listed in increasing order, and 1 is NOT included.

    Sample Input:

    630
    

    Sample Output:

    3
    5*6*7

     1 #include<stdio.h>
     2 #include<math.h>
     3 int main()
     4 {
     5     int MAX = 0,n,index;
     6     scanf("%d",&n);
     7     int m = sqrt(double(n));
     8     for(int i = 2 ; i <= m ;++i)
     9     {
    10         int k = i;
    11         int tmp = n;
    12         while(tmp%k == 0)
    13         {
    14             tmp = tmp / k;
    15             ++k;
    16         }
    17         if(k - i > MAX)
    18         {
    19             MAX = k - i;
    20             index = i;
    21         }
    22     }
    23     if(MAX == 0)
    24     {
    25         printf("1
    ");
    26         printf("%d
    ",n);
    27         return 0;
    28     }
    29     printf("%d
    ",MAX);
    30     for(int i = index ;i < index + MAX;++i)
    31     {
    32         if(i == index)
    33         {
    34             printf("%d",index);
    35         }
    36         else
    37         {
    38             printf("*%d",i);
    39         }
    40     }
    41     printf("
    ");
    42 }
  • 相关阅读:
    Unix/Linux笔记全集
    深入浅出-变长参数
    基于 SSH 的远程操作以及安全,快捷的数据传输<转>
    面向对象的特性—— 封装
    wpf 窗体翻页效果
    wpf控件拖动
    Wpf 导出CSV文件
    wpf 导出Excel
    Wpf Button 样式
    wpf简单进度条
  • 原文地址:https://www.cnblogs.com/xiaoyesoso/p/5213961.html
Copyright © 2011-2022 走看看