[2016-05-10][51nod][1015 水仙花数]

  • 时间:2016-05-10 16:23:29 星期二

  • 题目编号:[2016-05-10][51nod][1015 水仙花数]

  • 题目大意:

    • 水仙花数是指一个 n 位数 ( n >= 3 ),它的每个位上的数字的 n 次幂之和等于它本身。(例如:1^3 + 5^3 + 3^3 = 153),
    • 给出一个整数M,求 >= M的最小的水仙花数。
  • 分析:直接算出前几个水仙花数就好

  1. #include<stdio.h>
  2. using namespace std;
  3. int main(){
  4. int m;
  5. scanf("%d",&m);
  6. if(m > 407){
  7. puts("1634");
  8. }else if(m > 371){
  9. puts("407");
  10. }else if(m > 370){
  11. puts("371");
  12. }else if(m > 153){
  13. puts("370");
  14. }else puts("153");
  15. }

来自为知笔记(Wiz)

时间: 2024-11-10 01:32:50

[2016-05-10][51nod][1015 水仙花数]的相关文章

51Nod 1015 水仙花数

#include <cmath> #include "iostream" using namespace std; int main() { int m; int a[10]={0}; cin>>m; for(int i=m;;i++){ int n=i,len=0,sum=0; while(n!=0) { len++; a[len]=n%10; n=n/10; } for(int j=1;j<=len;j++){ sum+=pow(a[j],len);

1015 水仙花数(水题)

1015 水仙花数 基准时间限制:1 秒 空间限制:131072 KB 分值: 5 难度:1级算法题 收藏 关注 取消关注 水仙花数是指一个 n 位数 ( n >= 3 ),它的每个位上的数字的 n 次幂之和等于它本身.(例如:1^3 + 5^3 + 3^3 = 153) 给出一个整数M,求 >= M的最小的水仙花数. Input 一个整数M(10 <= M <= 1000) Output 输出>= M的最小的水仙花数 Input示例 99 Output示例 153 从m开始

[2016-05-11][51nod][1016 水仙花数 V2]

时间:2016-05-11 21:50:41 星期三 题目编号:[2016-05-11][51nod][1016 水仙花数 V2] 题目大意:水仙花数是指一个 n 位数 ( n≥3 ),它的每个位上的数字的 n 次幂之和等于它本身.(例如:1^3 + 5^3 + 3^3 = 153,1634 = 1^4 + 6^4 + 3^4 + 4^4). 给出一个整数M,求 >= M的最小的水仙花数.(10 <= M <= 10^60) 分析:10^60内,只有89个水仙花数,打表即可 0 1 2

1015 水仙花数(枚举)

1015 水仙花数 基准时间限制:1 秒 空间限制:131072 KB 分值: 5 难度:1级算法题  收藏  关注 水仙花数是指一个 n 位数 ( n >= 3 ),它的每个位上的数字的 n 次幂之和等于它本身.(例如:1^3 + 5^3 + 3^3 = 153) 给出一个整数M,求 >= M的最小的水仙花数. Input 一个整数M(10 <= M <= 1000) Output 输出>= M的最小的水仙花数 Input示例 99 Output示例 153 加油 #inc

51NOD 1016 水仙花数 V2(打表)

传送门 水仙花数是指一个 n 位数 ( n≥3 ),它的每个位上的数字的 n 次幂之和等于它本身.(例如:1^3 + 5^3 + 3^3 = 153,1634 = 1^4 + 6^4 + 3^4 + 4^4). 给出一个整数M,求 >= M的最小的水仙花数. Input 一个整数M(10 <= M <= 10^60) Output 输出>= M的最小的水仙花数,如果没有符合条件的水仙花数,则输出:No Solution Input示例 300 Output示例 370 解题思路:

51Nod 1016 水仙花数 V2(组合数学,枚举打表法)

1016 水仙花数 V2 基准时间限制:1 秒 空间限制:131072 KB 分值: 160 难度:6级算法题 水仙花数是指一个 n 位数 ( n≥3 ),它的每个位上的数字的 n 次幂之和等于它本身.(例如:1^3 + 5^3 + 3^3 = 153,1634 = 1^4 + 6^4 + 3^4 + 4^4). 给出一个整数M,求 >= M的最小的水仙花数. Input 一个整数M(10 <= M <= 10^60) Output 输出>= M的最小的水仙花数,如果没有符合条件的

1015 水仙花数

基准时间限制:1 秒 空间限制:131072 KB 分值: 5 难度:1级算法题 水仙花数是指一个 n 位数 ( n >= 3 ),它的每个位上的数字的 n 次幂之和等于它本身.(例如:1^3 + 5^3 + 3^3 = 153) 给出一个整数M,求 >= M的最小的水仙花数. Input 一个整数M(10 <= M <= 1000) Output 输出>= M的最小的水仙花数 Input示例 99 Output示例 153 久违的水仙花数,第一发还傻傻的写了发暴力.. 弱数

Murano Weekly Meeting 2016.05.10

Meeting time: 2016.May.10 1:00~2:00 Chairperson:  Serg Melikyan, from Mirantis Meeting summary: 1. murano contributors rules Six usage rule: use it only when really necessary (for example if existing code will now work in Py3 at all. If it is a matte

51nod 1016 水仙花数

大水仙花数模板+1…… #include<stdio.h> #include<math.h> #include<queue> #include<vector> #include<stack> #include<set> #include<string.h> #include<iostream> #include<algorithm> #define MAXSIZE 1000005 #define L