码迷,mamicode.com
首页 >  
搜索关键字:primes    ( 339个结果
CF1228C. Primes and Multiplication(数学)
Let’s introduce some definitions that will be needed later. Let 𝑝𝑟𝑖𝑚𝑒(𝑥) be the set of prime divisors of 𝑥. For example, 𝑝𝑟𝑖𝑚𝑒(140)={2,5,7 ...
分类:其他好文   时间:2019-10-01 11:41:26    阅读次数:93
Codeforces 1228C. Primes and Multiplication
传送门 当然是考虑 $n$ 的每个质数 $p$ 对答案的贡献 考虑 $p^k$ 在 $[1,m]$ 中出现了几次,显然是 $\left \lfloor \frac{m}{p^k} \right \rfloor$ 次 那么对于 $p^k$ ,它目前的贡献就是 $p^{\left \lfloor \fr ...
分类:其他好文   时间:2019-09-30 14:28:41    阅读次数:69
UVA 10395 素数筛
Twin Primes Twin primes are pairs of primes of the form (p; p + 2). The term \twin prime" was coined by PaulStckel (1892-1919). The rst few twin prime ...
分类:其他好文   时间:2019-08-29 09:21:43    阅读次数:65
[LeetCode] 204. 计数质数
题目链接:https://leetcode cn.com/problems/count primes/ 题目描述: 统计所有小于非负整数 n 的质数的数量。 示例: 思路: 质数就是除了 和本身找不到其他能除尽的数,思路请看题目的提示! 思路一:暴力法(超时)(大家可以学习一下 的用法, 一般配合 ...
分类:其他好文   时间:2019-08-17 21:51:24    阅读次数:78
PAT 2019 春
算是第二次做这套题吧,感觉从上次考试到现在自己有了挺大提高,提前30min做完了。 7-1 Sexy Primes 读懂题意就行。 1 #include <cstdio> 2 #include <iostream> 3 #include <cmath> 4 #include <algorithm> ...
分类:其他好文   时间:2019-08-17 00:29:56    阅读次数:92
PAT 甲级 1015 Reversible Primes (20 分) (进制转换和素数判断(错因为忘了=))
1015 Reversible Primes (20 分) 1015 Reversible Primes (20 分) 1015 Reversible Primes (20 分) A reversible prime in any number system is a prime whose "re ...
分类:其他好文   时间:2019-08-03 09:15:03    阅读次数:120
阶乘质因子分解——lightoj1035
#include using namespace std; #define ll long long #define maxn 200 int primes[maxn],m; bool vis[maxn]; void init(){ for(int i=2;i=maxn)break; vis[i*p... ...
分类:其他好文   时间:2019-07-04 11:08:29    阅读次数:104
tf.nn.conv2d
import numpy as npfilter_primes = np.array([2., 3., 5., 7., 11., 13.], dtype=np.float32)x = tf.constant(np.arange(1, 13+1, dtype=np.float32).reshape([ ...
分类:其他好文   时间:2019-05-29 18:18:46    阅读次数:113
Codeforces Round #556 (Div. 2) C. Prefix Sum Primes
题目大意让你改变数组的排序,使前缀和的素数最多; 这是一道模拟题,让你通过判断1和2的个数来解决, 只要特判一下1的个数是零的时候,2的个数是零的时候,或者1只有一个而2的个数又不是0个的时候,剩下的情况我们只有把1的个数分奇数和偶数来考虑,大致思路是这样,接下来就看代码吧 ...
分类:其他好文   时间:2019-05-02 09:27:44    阅读次数:110
339条   上一页 1 2 3 4 5 6 ... 34 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!