当前位置: 首页 > article >正文

算法基础-约数

试除法求约数

public class Main {
    public static void main(String[] args){
        Scanner in = new Scanner(System.in);
        int n = in.nextInt();
        while(n -- > 0) {
            int x = in.nextInt();
            List<Integer> list = new ArrayList<>();
            for(int i = 1; i <= x / i; i ++) {
                if(x % i == 0) {
                    list.add(i);
                    if(x / i != i)
                        list.add(x / i);
                }
            }
            Collections.sort(list);
            for (Integer num : list) {
                System.out.print(num + " ");
            }
            System.out.println();
        }
    }
}

基本思想

 

数的乘积的约数个数

public class Main {
    private static final int N = 1000000007;
    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        Map<Integer, Integer> map = new HashMap<>();
        int n = in.nextInt();
        while(n -- > 0) {
            int x = in.nextInt();
            for(int i = 2; i <= x / i; i ++) {
                while(x % i == 0) {
                    x /= i;
                    map.put(i,map.getOrDefault(i,0) + 1);
                }
            }
            if(x > 1)
                map.put(x,map.getOrDefault(x,0) + 1);
        }
        long res = 1;
        for (Integer value : map.values())
            res = res * (value + 1) % N;
        System.out.println(res);
    }
}

数的乘积的约数之和

public class Main {
    private static final int N = 1000000007;
    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        Map<Integer, Integer> map = new HashMap<>();
        int n = in.nextInt();
        while(n -- > 0) {
            int x = in.nextInt();
            for(int i = 2; i <= x / i; i ++) {
                while(x % i == 0) {
                    x /= i;
                    map.put(i,map.getOrDefault(i,0) + 1);
                }
            }
            if(x > 1)
                map.put(x,map.getOrDefault(x,0) + 1);
        }
        long res = 1;
        for (Map.Entry<Integer, Integer> entry : map.entrySet()) {
            long a = entry.getKey();
            long b = entry.getValue();
            long t = 1;
            while(b -- > 0)
                t = (t * a + 1) % N;
            res = res * t % N;
        }
        System.out.println(res);
    }
}

最大公约数


http://www.kler.cn/a/300339.html

相关文章:

  • 计算机网络 (54)系统安全:防火墙与入侵检测
  • linux如何并行执行命令
  • Java虚拟机面试题:内存管理(中)
  • Face2face:非深度学习时代如何进行实时的三维人脸重建
  • SSE 实践:用 Vue 和 Spring Boot 实现实时数据传输
  • 基于微信小程序的安心陪诊管理系统
  • PHP函数如何传递数组参数
  • Shell脚本计算π的近似值
  • Java 并发中线程和进程的关系与区别
  • 【Altium Designer】AD18 导入3D模型
  • What‘s new in C# 7,8,9,10
  • MySQL连接相关知识点
  • LeetCode:977. 有序数组的平方 双指针 时间复杂度O(n)
  • MySQL原理之UUID主键分析,插入或更新语法分析
  • 人工智能--网络可解释性框架
  • AI大模型日报#0908:OpenAI计划年底推出GPT Next、Roblox官宣AI秒生3D物体模型
  • AI电商,如何提高设计效率?
  • qt下两种方式读取opencv 图片各个通道的值
  • YOLOv8改进 | 模块缝合 | C2f 融合RVB + EMA注意力机制【二次融合 + 结构图】
  • 论文阅读:3D Gaussian Splatting for Real-Time Radiance Field Rendering
  • 【Unity】HybridCLR测试笔记
  • 数据结构代码集训day16(适合考研、自学、期末和专升本)
  • ASP.NET Core 入门教学二十三 模型绑定和验证
  • 高并发内存池项目(3)——项目框架介绍与实现线程池
  • 【2024】Benchmarking Foundation Models with Language-Model-as-an-Examiner
  • 【佳学基因检测】在织梦网站中, 创建或修改目录:/var/www/html/cp 失败! DedeTag Engine Create File False