记录编号 308005 评测结果 AAAAA
题目名称 水仙花数 最终得分 100
用户昵称 Gravataropen the window 是否通过 通过
代码语言 C++ 运行时间 0.015 s
提交时间 2016-09-16 17:33:14 内存使用 0.31 MiB
显示代码纯文本
#include<cstdio>
#include<iostream>
using namespace std;
int n;
bool v[1000];
int main()
{
	freopen("daff.in","r",stdin);
	freopen("daff.out","w",stdout);
	v[153]=true;
	v[370]=true;
    v[371]=true;
    v[407]=true;
	scanf("%d",&n);
	/*
	for (int i=100; i<=999; ++i)
	{
		int a=i/100,
			b=(i%100)/10,
			c=i%10;
		if (a*a*a+b*b*b+c*c*c==i) printf("%d\n",i);
	}
	*/
	if (v[n]) printf("TRUE\n");
	 else printf("FALSE\n");
	return 0;
}