记录编号 | 575529 | 评测结果 | AAAAA | ||
---|---|---|---|---|---|
题目名称 | 水仙花数 | 最终得分 | 100 | ||
用户昵称 | ムラサメ | 是否通过 | 通过 | ||
代码语言 | C++ | 运行时间 | 0.000 s | ||
提交时间 | 2022-09-20 15:23:31 | 内存使用 | 0.00 MiB | ||
#include<bits/stdc++.h> using namespace std; int n; int main(){ freopen("daff.in","r",stdin); freopen("daff.out","w",stdout); ios::sync_with_stdio(0); cin.tie(0); cout.tie(0); cin>>n; if(n==153||n==370||n==371||n==407){ cout<<"TRUE"<<endl; } else{ cout<<"FALSE"<<endl; } return 0; }