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 }
  • 相关阅读:
    Html.ActionLink 几种重载方式说明及例子
    2 python 文本特征提取 CountVectorizer, TfidfVectorizer
    模型调参---GridSearchCV
    1 NLP学习大纲
    pandas.dropna/isnull/fillna/astype的用法
    激活函数总结
    LeetCode--53 最大连续子序列(总结)
    LeetCode--44 通配符匹配
    LeetCode--Two_Sum
    css 背景图片自适应元素大小
  • 原文地址:https://www.cnblogs.com/PureJava/p/10498236.html
Copyright © 2011-2022 走看看