Submit | All submissions | Best solutions | Back to list |
EIGHTS - Triple Fat Ladies |
Pattern Matchers have been designed for various sorts of patterns. Mr. HKP likes to observe patterns in numbers. After completing his extensive research on the squares of numbers, he has moved on to cubes. Now he wants to know all numbers whose cube ends in 888.
Given a number k, help Mr. HKP find the kth number (indexed from 1) whose cube ends in 888.
Input
The first line of the input contains an integer t, the number of test cases. t test cases follow.
Each test case consists of a single line containing a single integer k (1 <= k <= 2000000000000).
Output
For each test case, output a single integer which denotes the kth number whose cube ends in 888. The result will be less than 263.
Example
Input: 1 1 Output: 192
Added by: | Matthew Reeder |
Date: | 2006-10-30 |
Time limit: | 1.197s |
Source limit: | 30000B |
Memory limit: | 1536MB |
Cluster: | Cube (Intel G860) |
Languages: | All except: ERL JS-RHINO NODEJS PERL6 VB.NET |
Resource: | Al-Khawarizm 2006 |
hide comments
|
||||||||||||||
2016-11-16 15:41:49
5 line code with python 2.7 :) :) btw the soln is O(1) for each loop. :) :) Just find when 8 comes at the end in a cube of a number. You'll get the answer :D :D 250!!! ;) |
||||||||||||||
2016-10-30 15:12:34
Did DP first then realized the massive runtime, so noticed something on the console. AC in one go :) |
||||||||||||||
2016-10-22 20:14:59
finally AC...awwww ...use Multiprecision in c++..make it easy problem. |
||||||||||||||
2016-09-25 18:28:19
Looks difficult at the first glance, but appearances are deceptive. :P |
||||||||||||||
2016-09-02 04:41:54
Do not start reading comment before doing the program. I have learnt it and i want to share it with you all. Do not look at comment while doing question.First do it yourself. Try many times and then look at comment because comment dont let you think your brain. This problem is simple , it was tough but after solving it looks simple. So if someone says a problem is simple , he means that he solved it. Every problem is tough before solving it so don't doubt your ability if you see some problem labeled as easy and you are not able to do it. Just go through the question not comment , use your own thinking. And write the code , and improve it on EVERY wrong answer and time limit exceeded .Maybe it would take long but you will remember it forever as you did it yourself. |
||||||||||||||
2016-08-29 22:01:16
I am not able to understand the question can anybody can explain it to me |
||||||||||||||
2016-08-23 11:42:43
EASY..but beware :) |
||||||||||||||
2016-08-22 08:38:27
hi sweatygenius :3 |
||||||||||||||
2016-08-16 22:33:09
AC in first try itself!! Thank god. I tried for 2 hrs in java...reduced execution time from 15 minutes to 0.13 seconds.... ;-) in between I wished for i9 processor ;-) ... Nothing much in the program...a smaalllll logic. Just figure it out and you are done. Last edit: 2016-08-16 22:34:42 |
||||||||||||||
2016-08-16 18:39:48
Comments can sometimes be helpful!!! It really is about the pattern... AC in on go!!! |