HOJ 1014 Niven Numbers
Posted gcyyzf
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了HOJ 1014 Niven Numbers相关的知识,希望对你有一定的参考价值。
一道暴力题
提醒一下数据范围是1000000;
#include <cstdio> #include <cstring> #include <iostream> #include <algorithm> using namespace std; const int MAXN=1000000; inline int read(){ int x=0,f=1,ch=getchar(); while(ch<‘0‘||ch>‘9‘){if(ch==‘-‘)f=-1;ch=getchar();} while(ch>=‘0‘&&ch<=‘9‘){x=x*10+ch-‘0‘;ch=getchar();} return x*f; } char s[MAXN]; int main(){ int base=read(); while(base){ scanf("%s",s); int len=strlen(s); int sum=0; for(int i=0;i<len;i++) sum+=s[i]-‘0‘; int ans=0; for(int i=0;i<len;i++) ans=(ans*base+s[i]-‘0‘)%sum; if(ans) puts("no"); else puts("yes"); base=read(); } return 0; }
以上是关于HOJ 1014 Niven Numbers的主要内容,如果未能解决你的问题,请参考以下文章
[Algorithm] A nonrecursive algorithm for enumerating all permutations of the numbers {1,2,...,n}(代码片
c_cpp HOJ - 302:最大平均值[AC]; http://hoj.twbbs.org/judge/judge/submission/21872