码迷,mamicode.com
首页 >  
搜索关键字:euler    ( 502个结果
HDU——2824 The Euler function
The Euler function Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 4507 Accepted Submission(s): ...
分类:其他好文   时间:2017-08-08 16:45:05    阅读次数:153
HDU——T 2824 The Euler function
http://acm.hdu.edu.cn/showproblem.php?pid=2824 Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 77 ...
分类:其他好文   时间:2017-08-08 15:33:22    阅读次数:211
Project Euler:Problem 34 Digit factorials
145 is a curious number, as 1! + 4! + 5! = 1 + 24 + 120 = 145. Find the sum of all numbers which are equal to the sum of the factorial of their digits ...
分类:其他好文   时间:2017-08-07 20:39:37    阅读次数:160
51nod 1024 矩阵中不重复的元素(质因数分解+map判重)
1024 矩阵中不重复的元素 题目来源: Project Euler 基准时间限制:1 秒 空间限制:131072 KB 分值: 10 难度:2级算法题 收藏 关注 取消关注 收藏 关注 取消关注 一个m*n的矩阵。 该矩阵的第一列是a^b,(a+1)^b,.....(a + n - 1)^b 第二 ...
分类:其他好文   时间:2017-08-07 13:30:14    阅读次数:198
欧拉筛模板
#include #include #include using namespace std; void Euler_sieve(int x) { for(int i=2;i<=n;++i) { if(!vis[i]) { vis[i]=1; prime[++cnt]=i; } ... ...
分类:其他好文   时间:2017-08-01 12:34:41    阅读次数:183
找新朋友(欧拉函数)
欧拉函数: 在数论,对正整数n,欧拉函数是少于或等于n的数中与n互质的数的数目。此函数以其首名研究者欧拉命名,它又称为Euler's totient function、φ函数、欧拉商数等。 例如φ(8)=4,因为1,3,5,7均和8互质。 从欧拉函数引伸出来在环论方面的事实和拉格朗日定理构成了欧拉定 ...
分类:其他好文   时间:2017-08-01 11:12:22    阅读次数:112
Project Euler:Problem 41 Pandigital prime
We shall say that an n-digit number is pandigital if it makes use of all the digits 1 to n exactly once. For example, 2143 is a 4-digit pandigital and ...
分类:其他好文   时间:2017-07-28 12:50:11    阅读次数:164
51NOD-1136 欧拉函数
基准时间限制:1 秒 空间限制:131072 KB 对正整数n,欧拉函数是少于或等于n的数中与n互质的数的数目。此函数以其首名研究者欧拉命名,它又称为Euler's totient function、φ 函数、欧拉商数等。例如:φ(8) = 4(Phi(8) = 4),因为1,3,5,7均和8互质。 ...
分类:其他好文   时间:2017-07-18 15:23:54    阅读次数:133
hdu2824 The Euler function O(n)求欧拉函数
hdu2824 The Euler function O(n)求欧拉函数 ...
分类:其他好文   时间:2017-07-15 13:56:23    阅读次数:122
Project Euler:problem 104
题目链接:http://pe-cn.github.io/104/ 部分结果: first nine 308563first nine 309329last nine 309354last nine 309998first nine 310064last nine 310229first nine 3 ...
分类:其他好文   时间:2017-07-03 21:06:55    阅读次数:233
502条   上一页 1 ... 14 15 16 17 18 ... 51 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!