码迷,mamicode.com
首页 > 其他好文 > 详细

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

时间:2019-01-03 18:15:14      阅读:220      评论:0      收藏:0      [点我收藏+]

标签:scan   链接   att   result   ike   can   ber   class   NPU   

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;
}

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

标签:scan   链接   att   result   ike   can   ber   class   NPU   

原文地址:https://www.cnblogs.com/tigerisland45/p/10215894.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!