2296: 【POJ Challenge】随机种子
Time Limit: 1 Sec Memory Limit: 128 MBSec Special Judge
Submit: 114 Solved: 54
[Submit][Status]
Description
1tthinking除了随机算法,其他什么都不会。但是他还是可以ac很多题目,他用的是什么呢?他会选择一个好的随机种子,然后输出答案。往往他选择的一个好的种子可以有99%的概率ac题目。
他会按照下面的规则选择一个种子。首先1tthinking有自己喜欢的一个幸运数字 x。然后他会找一个数字 a 使得 (1)a is a 是 x 的倍数 (2) a 的十进制表示包含0到9。
举个例子, 如果 x = 1, 那么 9182736450 就是一个1tthinking需要的随机种子。
然而1tthinking有的时候花了很久也找不到这个数,他感到很失望。现在他把问题留给了你。
Input
第1行,一个整数 T (0 ≤ T ≤ 100), 幸运数字的数量。
第2到 T + 1行: Xi (0 ≤ Xi ≤ 106), 1tthinking的幸运数字。
Output
第1到 T: 一个整数 Yi (0 ≤ Yi ≤ 1016), 满足条件的随机种子. 如果不存在,输出-1。
Sample Input
3
1
2
10
1
2
10
Sample Output
9876543210
9876543210
9876543210
9876543210
9876543210
HINT
Source
题解:
500T做了这么一道逗逼题。。。
10+6=16。。。
所以我们从1234567890-000000开始枚举,到达1234567890-999999一定有被x整除的数,因为x<=100W
注意0输出-1
代码:
500T做了这么一道逗逼题。。。
10+6=16。。。
所以我们从1234567890-000000开始枚举,到达1234567890-999999一定有被x整除的数,因为x<=100W
注意0输出-1
代码:
#include<cstdio> #include<cstdlib> #include<cmath> #include<cstring> #include<algorithm> #include<iostream> #include<vector> #include<map> #include<set> #include<queue> #include<string> #define inf 1000000000 #define maxn 100000 #define maxm 500+100 #define eps 1e-10 #define ll long long #define pa pair<int,int> #define for0(i,n) for(int i=0;i<=(n);i++) #define for1(i,n) for(int i=1;i<=(n);i++) #define for2(i,x,y) for(int i=(x);i<=(y);i++) #define for3(i,x,y) for(int i=(x);i>=(y);i--) #define mod 1000000007 using namespace std; inline int read() { int x=,f=;char ch=getchar(); while(ch<''||ch>''){if(ch=='-')f=-;ch=getchar();} while(ch>=''&&ch<=''){x=*x+ch-'';ch=getchar();} return x*f; } int main() { freopen("input.txt","r",stdin); freopen("output.txt","w",stdout); int n=read();
while(n--)
{
ll x=read();ll i;
if(!x){printf("%d\n",-);continue;}
for(i=1234567890000000ll;i%x;i++);
printf("%lld\n",i);
} return ; }