Description
What Odd Even did not think of,was that both factors in a key should be large,not just their product. It is now possible that some of the users of the system have weak keys. In a desperate attempt not to be fired,Odd Even secretly goes through all the users keys,to check if they are strong enough. He uses his very poweful Atari,and is especially careful when checking his boss' key.
Input
The input consists of no more than 20 test cases. Each test case is a line with the integers 4 <= K <= 10
100 and 2 <= L <= 10
6. K is the key itself,a product of two primes. L is the wanted minimum size of the factors in the key. The input set is terminated by a case where K = 0 and L = 0.
Output
For each number K,if one of its factors are strictly less than the required L,your program should output "BAD p",where p is the smallest factor in K. Otherwise,it should output "GOOD". Cases should be separated by a line-break.
Sample Input
143 10 143 20 667 20 667 30 2573 30 2573 40 0 0
Sample Output
GOODBAD 11GOODBAD 23GOODBAD 31
/* 我觉得先筛选出素数,用个数组来存100W内的素数 然后循环一遍,如果有整除的。就不行 注意得转换为1000进制,10进制取模太多次。会超时 */ #include<iostream> #include <cstdio> #include <cstring> using namespace std; #define maxn 1000000 #define inf 0x3f3f3f3f bool isp[maxn+20]; int pri[maxn]; int kt[10000];//把所输入的数转换为千进制 void init() { for(int i=2;i<=1000;i++) { if(!isp[i]) { for(int j=i*i;j<=maxn;j+=i) { isp[j]=1; } } } int k=0; for(int i=2;i<=maxn;i++) { if(!isp[i]) { pri[k++]=i; } } pri[k]=inf; } int main() { char A[120]; int m; init(); while(scanf("%s%d",A,&m)==2&&(m)) { bool flag=false; int len=strlen(A); int i=0,j=-1; while(A[i]!='\0') { j++; kt[j]=A[i]-'0'; i++; if(A[i]!='\0') { kt[j]=kt[j]*10+A[i]-'0'; i++; if(A[i]!='\0') { kt[j]=kt[j]*10+A[i]-'0'; i++; } else break; } else break; } //j从1开始 for(int k=0;pri[k]<m;k++) { int ans=0; for(int z=0;z<=j;z++) { if(z<j) // ans=(int)(((long long)ans*1000+kt[z])%pri[k]);额。原先照抄LRJ的模板。类型转换费时间严重。直接双倍的时间 ans=(ans*1000+kt[z])%pri[k]; else if(len%3==1) { ans=(ans*10+kt[z])%pri[k]; } else if(len%3==2)ans=(ans*100+kt[z])%pri[k]; else ans=(ans*1000+kt[z])%pri[k]; } if(!ans) { printf("BAD %d\n",pri[k]); flag=true; break; } } if(!flag)printf("GOOD\n"); } return 0; }
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。