SPOJ-EIGHTS Triple Fat Ladies【数学规律】

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

问题链接SPOJ-EIGHTS Triple Fat Ladies
问题简述
    计算第k个立方其结尾为888的数。
问题分析
    找规律,可以编写一个程序来找规律。可以发现每250次出现一个,第1个是192。
程序说明:(略)
参考链接:(略)
题记:计算时需要注意值的范围。

AC的C语言程序如下:

/* SPOJ-EIGHTS Triple Fat Ladies */

#include <stdio.h>

int main(void)
{
    int t;
    scanf("%d", &t);
    while(t--) {
        long long k;
        scanf("%lld", &k);
        printf("%lld\n", 192 + (k - 1) * 250);
    }

    return 0;
}

猜你喜欢

转载自www.cnblogs.com/tigerisland45/p/10215894.html