Submit | All submissions | Best solutions | Back to list |
ONEZERO - Ones and zeros |
Certain positive integers have their decimal representation consisting only of ones and zeros, and having at least one digit one, e.g. 101. If a positive integer does not have such a property, one can try to multiply it by some positive integer to find out whether the product has this property.
Input
Number K of test cases (K is approximately 1000);
In each of the next K lines there is one integer n (1 ≤ n ≤ 20000)
Output
For each test case, your program should compute the smallest multiple of the number n consisting only of digits 1 and 0 (beginning with 1).
Example
Input: 3 17 11011 17 Output: 11101 11011 11101
Added by: | Paweł Dobrzycki |
Date: | 2005-05-26 |
Time limit: | 8s |
Source limit: | 4096B |
Memory limit: | 1536MB |
Cluster: | Cube (Intel G860) |
Languages: | All except: NODEJS PERL6 VB.NET |
Resource: | II Polish Olympiad in Informatics, Ist Stage |
hide comments
|
||||||||||||||
2014-05-21 07:45:51 Anubhav Bindlish
Will the answer fit in 64 bit integer? |
||||||||||||||
2014-03-10 17:38:27 californiagurl
modular maths FTW :D (y) !!!! hint: only one character array required |
||||||||||||||
2014-01-21 18:38:58 Somesh Maurya™
ans for 19998?? |
||||||||||||||
2013-12-27 10:33:31 Srijan Khare
i think 9999 is not included in the test cases... anyway nice problem :) |
||||||||||||||
2013-12-25 15:12:23 Gitu
Finally Green Light :) Map and std:queues costed me 10+ TLEs.... |
||||||||||||||
2013-12-17 18:25:25 Akshat Jain
Nice problem....avoid string Last edit: 2013-12-18 05:39:51 |
||||||||||||||
2013-12-15 16:36:38 (^-^)
very nice question!! |
||||||||||||||
2013-10-25 12:50:34 aar
Very good question.. BFS.. Must solve.. Solved in 9 hrs, but was worth... |
||||||||||||||
2013-09-22 07:57:42 _maverick
Have an optimized I/O and some tricks up sleeve to get AC ... btw dont need strings for and it keep it simple ... excellent problem , spent 6 hours on it and enjoyed .. XD. |
||||||||||||||
2014-05-26 12:14:44 aqfaridi
finally got AC... vry nice prob!! |