hdu 1128 Self Numbers
摘要:
http://acm.hdu.edu.cn/showproblem.php?pid=1128水题,哎,水题也贴一个吧。。。注意和可能会超过1000000.View Code 1 #include <stdio.h> 2 #include <stdlib.h> 3 int hash[1000070]={0}; 4 int main() 5 { 6 int i,temp,sum; 7 8 for(i=1;i<=1000000;i++) 9 {10 sum=i;11 temp=i;12 while(temp)13... 阅读全文
posted @ 2012-11-14 23:59 仁者无敌8勇者无惧 阅读(127) 评论(0) 推荐(0) 编辑