标签:out tar acm 它的 color freopen bsp file lag
http://acm.hdu.edu.cn/showproblem.php?pid=2010
春天是鲜花的季节,水仙花就是其中最迷人的代表,数学上有个水仙花数,他是这样定义的:“水仙花数”是指一个三位数,它的各位数字的立方和等于其本身,比如:153=1^3+5^3+3^3。现在要求输出所有在m和n范围内的水仙花数。
Solution:水仙花数又称阿姆斯特朗数,没有直接规律,只能暴力求解.
有限数列,打表算了(懒写暴力)
使用在线算法打大表:
// This file is made by YJinpeng,created by XuYike‘s black technology automatically. // Copyright (C) 2016 ChangJun High School, Inc. // I don‘t know what this program is. #include <iostream> #include <cstdio> using namespace std; int a[10]={153,370,371,407},b[10]; int main() { freopen("2010.in","r",stdin); freopen("2010.out","w",stdout); int l,r,flag; while(~scanf("%d %d",&l,&r)){ flag=0; for(int i=0;i<4;i++) if(a[i]>=l&&a[i]<=r)b[++flag]=a[i]; if(flag){for(int i=1;i<flag;i++)printf("%d ",b[i]);printf("%d",b[flag]);} else printf("no");printf("\n"); } return 0; }
标签:out tar acm 它的 color freopen bsp file lag
原文地址:http://www.cnblogs.com/YJinpeng/p/5987015.html