| 记录编号 | 121786 | 评测结果 | AAAAA | ||
|---|---|---|---|---|---|
| 题目名称 | 368.水仙花数 | 最终得分 | 100 | ||
| 用户昵称 | 是否通过 | 通过 | |||
| 代码语言 | C++ | 运行时间 | 0.001 s | ||
| 提交时间 | 2014-09-21 15:11:14 | 内存使用 | 0.31 MiB | ||
#include<cstdio>
#include<iostream>
using namespace std;
main()
{
freopen("daff.in","r",stdin);
freopen("daff.out","w",stdout);
int a;
cin>>a;
if(a==153||a==370||a==371||a==407)
cout<<"TRUE";
else
cout<<"FALSE";
fclose(stdin);
fclose(stdout);
}