码迷,mamicode.com
首页 >  
搜索关键字:long    ( 19145个结果
C语言中如何获得文件大小
方法一: 获得文件大小需要用到2个函数:fseek() , ftell() fseek()函数: 原型:intfseek(FILE *stream, long offset, int fromwhere); 参数: stream: 第一个参数stream为文件指针 offset : 第...
分类:编程语言   时间:2014-05-16 21:12:40    阅读次数:307
spoj 3871 gcd extreme
1 题目大意给出一个n,求sum(gcd(i,j),014 #include 15 using namespace std;16 #define Max 100000017 18 long long phi[Max+5],ans[Max+5];19 int prime[Max/3];20 bool....
分类:其他好文   时间:2014-05-13 22:40:58    阅读次数:251
poj 3286 统计0的个数
1 #include 2 3 using namespace std; 4 long long p; 5 long long a[20]; 6 long long solve(long long n){ 7 long long left,m,sum =0; 8 for(i...
分类:其他好文   时间:2014-05-13 21:29:55    阅读次数:369
hdu 2841 Visible Trees
1 /** 2 大意: 求[1,m], [1,n] 之间有多少个数互素。。。做了 1695 ,,这题就so easy 了 3 **/ 4 #include 5 #include 6 #include 7 using namespace std; 8 const long long max...
分类:其他好文   时间:2014-05-13 21:28:49    阅读次数:349
2013 南京邀请赛 K题 yet another end of the world
1 /** 2 大意:给定一组x[],y[],z[] 确定有没有两个不同的x[i], x[j] 看是否存在一个ID使得 3 y[i]17 #include 18 using namespace std;19 long long x[1010],y[1010],z[1010];20 2...
分类:其他好文   时间:2014-05-13 21:15:24    阅读次数:352
poj 1430 第二类斯特林数
1 #include 2 #include 3 #include 4 using namespace std; 5 6 int get2(long long n){ 7 if(n==0) 8 return 0; 9 int cnt =0;10 whi...
分类:其他好文   时间:2014-05-13 21:03:03    阅读次数:329
poj-1426(转)
大致题意:给出一个整数n,(1 int n,flat;unsigned long long b;void DFS(unsigned long long a,int step){ if(flat||step==19) { return ; } if(a%n==0)...
分类:其他好文   时间:2014-05-13 19:59:23    阅读次数:276
poj 2689 大范围内素数筛选
1 /** 2 给定一定范围求其内的素数 3 4 注意: 5 **/ 6 7 #include 8 #include 9 #include 10 using namespace std;11 #define maxn 100000012 long long prime[500000];1...
分类:其他好文   时间:2014-05-13 19:50:13    阅读次数:242
临时代码。
zoj 3673 1 /** 2 6700417 3 **/ 4 #include 5 #include 6 #include 7 #include 8 #include 9 using namespace std;10 11 typedef unsigned long long LL;12 13 ...
分类:其他好文   时间:2014-05-13 18:07:32    阅读次数:234
HDU3920:Clear All of Them I(状态压缩)
Problem Description Acmers have been the Earth Protector against the evil enemy for a long time, now it’s your turn to protect our home.   There are 2 * n enemies in the map. Your task is to clear a...
分类:其他好文   时间:2014-05-13 11:29:40    阅读次数:308
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!