zoukankan      html  css  js  c++  java
  • PAT 甲级 1096 Consecutive Factors

    https://pintia.cn/problem-sets/994805342720868352/problems/994805370650738688

    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<).

    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

    代码:

    #include <bits/stdc++.h>
    using namespace std;
    
    int N;
    
    int main() {
        scanf("%d", &N);
        for(int i = 13; i >= 1; i --) {
            for(int j = 2; j * j <= N; j ++) {
                long long ans = 1;
                for(int k = j; k - j <= i - 1; k ++)
                    ans *= k;
    
                if(N % ans == 0) {
                    printf("%d
    %d", i, j);
                    for(int k = j + 1; k - j <= i - 1; k ++)
                        printf("*%d", k);
    
                    return 0;
                }
            }
        }
        printf("1
    %d", N);
        return 0;
    }
    

      枚举连续因子长度 枚举起点终点

     

  • 相关阅读:
    tcp示例
    udp示例
    str 和 bytes
    Xamarin UIProgressView自定义
    个人用Canvas开发HTML5小游戏
    canvas画一个h5小游戏
    用canvas写一个h5小游戏
    react js踩坑之路(一)
    捣腾一下 webpack+gulp 使用姿势~
    关于移动端的适配
  • 原文地址:https://www.cnblogs.com/zlrrrr/p/10382881.html
Copyright © 2011-2022 走看看