2354: LQ1017 水仙花数
Memory Limit:128 MB
Time Limit:1.000 S
Judge Style:Text Compare
Creator:
Submit:0
Solved:0
Description
水仙花数(Narcissistic number)也被称为超完全数字不变数(pluperfect digital invariant, PPDI)、自恋数、自幂数、阿姆斯壮数或阿姆斯特朗数(Armstrong number),水仙花数是指一个 3 位数,它的每个位上的数字的 3次幂之和等于它本身(例如:1^3^ + 5^3^+ 3^3^ = 153)。
Input
输入一个3位数判断是否是水仙花数。
Output
是则输出yes,否则输出no。
Sample Input Copy
153
Sample Output Copy
yes