zoukankan      html  css  js  c++  java
  • [PAT] 1096 Consecutive Factors (20 分)Java

    Among all the factors of a positive integer N, there may exist several consecutive numbers. For example, 630 can be factored as 3× imes×5× imes×6× imes×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<2^{31}<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
    
    作者: CHEN, Yue
    单位: 浙江大学
    时间限制: 400 ms
    内存限制: 64 MB
    代码长度限制: 16 KB
     
     
     
     1 package pattest;
     2 
     3 import java.util.Scanner;
     4 
     5 /**
     6  * @Auther: Xingzheng Wang
     7  * @Date: 2019/2/27 20:05
     8  * @Description: pattest
     9  * @Version: 1.0
    10  */
    11 public class PAT1096 {
    12     public static void main(String[] args) {
    13         Scanner sc = new Scanner(System.in);
    14         int num = sc.nextInt();
    15         int temp, first = 0, len = 0;
    16         double maxn = Math.sqrt(Double.valueOf(num));
    17         for (int i = 2; i <= maxn; i++) {
    18             int j;
    19             temp = 1;
    20             for (j = i; j <= maxn; j++) {
    21                 temp *= j;
    22                 if (num % temp != 0) break;
    23             }
    24             if (j - i > len) {
    25                 len = j - i;
    26                 first = i;
    27             }
    28         }
    29         if (first == 0) {
    30             System.out.println(1);
    31             System.out.print(num);
    32         } else {
    33             System.out.println(len);
    34             for (int i = 0; i < len; i++) {
    35                 System.out.print(first + i);
    36                 if (i != len - 1) System.out.print("*");
    37             }
    38         }
    39     }
    40 }
  • 相关阅读:
    Daily Recording 2020/01/09(关键词:1月01版,RouterScan)
    SQL语句技巧(转)
    实施的WinForms键盘快捷键方法
    日常问题汇总(1) 分组筛选
    设计模式 创建型设计模式
    TSQL查询逻辑查询处理
    无法嵌入互操作类型错误处理
    设计模式 创建模式
    设计模式 结构模式
    设计模式 行为模式
  • 原文地址:https://www.cnblogs.com/PureJava/p/10498236.html
Copyright © 2011-2022 走看看