码迷,mamicode.com
首页 >  
搜索关键字:primes    ( 339个结果
欧拉计划第10题题解
Summation of primes The sum of the primes below 10 is 2 + 3 + 5 + 7 = 17. Find the sum of all the primes below two million. 素数的和 所有小于10的素数的和是2 + 3 + 5 ...
分类:其他好文   时间:2020-02-17 20:02:02    阅读次数:77
LeetCode 204. Count Primes(线性素数筛)
"题目" 题意:求[1 n)中的质数。 题解:判断一个数是否是素数,很简单, ...
分类:其他好文   时间:2020-02-14 10:33:58    阅读次数:48
cf584DDima and Lisa(素数性质,三素数,哥德巴赫猜想)
题目链接 Dima loves representing an odd number as the sum of multiple primes, and Lisa loves it when there are at most three primes. Help them to represen ...
分类:其他好文   时间:2020-02-12 00:29:05    阅读次数:85
1751: n个素数构成等差数列
#include <stdio.h>int fill(char *map,int *primes) { for (int i = 2; i < 1001; i++) { map[i] = 1; for (int j = 2; j < i; j++) { if (i % j == 0) { map[i ...
分类:其他好文   时间:2020-02-06 19:30:27    阅读次数:70
204计数质数
题目:统计所有小于非负整数 n 的质数的数量. 来源:https://leetcode-cn.com/problems/count-primes/ 法一:自己的超时代码 思路:和官方的方法事实上一样,但是代码没有用标记0 1的方法,导致很费时.删除每个质数的倍数时,都需要判断是否存在,如果是用标记0 ...
分类:其他好文   时间:2020-01-31 12:31:09    阅读次数:132
Project Euler 58: Spiral primes
从一开始按以下方式逆时针旋转,可以形成一个边长为七的正方形螺旋: 一个有趣的现象是右下对角线上都有一个奇完全平方数,但是更有趣的是两条对角线上的十三个数中有八个数是素数(已经标红),也就是说素数占比为$8/13\approx62\%$。如果在上面的螺旋再加一层就可以形成一个边长为九的正文形螺旋。如果 ...
分类:其他好文   时间:2019-11-14 09:50:31    阅读次数:56
PAT-1015 Reversible Primes (20 分) 进制转换+质数
A reversible prime in any number system is a prime whose "reverse" in that number system is also a prime. For example in the decimal system 73 is a re ...
分类:其他好文   时间:2019-10-29 13:32:07    阅读次数:95
C. Primes and Multiplication(数学)(防止爆精度)
C. Primes and Multiplication time limit per test 1 second memory limit per test 256 megabytes input standard input output standard output C. Primes an ...
分类:其他好文   时间:2019-10-06 20:26:48    阅读次数:160
codeforces/contest/1228
B. Filling the Grid 分行和列进行染色,扫完图以后没有被染色的格子数,就是对答案产生的贡献值,wa了一发,因为没看清样例,会有冲突情况产生,这种情况下的答案是0 C. Primes and Multiplication 定义了三种操作 g(x,p)、 f(x,y)、prime(x) ...
分类:其他好文   时间:2019-10-02 14:28:27    阅读次数:72
Primes and Multiplication
"C Primes and Multiplication" 思路:找到 的所有质数因子,用一个 储存起来,然后对于每一个质因子来说,我们要找到它对最后的答案的贡献的大小,即要找到它在最后的乘积中出现了多少次。 求解方法: 另外,该题还需要用到快速幂的技巧。 代码: cpp // Created by ...
分类:其他好文   时间:2019-10-02 00:53:51    阅读次数:93
339条   上一页 1 2 3 4 5 ... 34 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!