求大神帮忙看看,在电脑编译通过,在洛谷不通过

P1618 三连击(升级版)

wzl2003 @ 2017-07-30 22:47:32

#include<iostream>
#include<cstdio>
#include<cstring>
using namespace std;
int hash[10];
int a[10000];
void cf(int n)
{ while(n!=0)
{ hash[n%10]++;
  n=n/10;
}return ;
}
int judge(int i,int j,int k)
{ cf(i);cf(j);cf(k);
for(int i=1;i<=9;i++)
  { if(hash[i]!=1)return 0;
  }
  return 1;
}
int main()
{int n,q,w;cin>>n>>q>>w;
  for(int i=123;i<=987;i++)
   { for(int j=0;j<=9;j++)
      hash[j]=0;
     if(judge(i*n,i*q,i*w)==1)
      {
       cout<<i*n<<" "<<i*q<<" "<<i*w<<endl;return 0; } 
   }
   cout<<"No!!!";
 } 

|