Leftmost Digit(hdu1060)(数学题)

Leftmost Digit

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 16762    Accepted Submission(s): 6643

Problem Description

Given a positive integer N, you should output the leftmost digit of N^N.

Input

The input contains several test cases. The first line of the input is a single integer T which is the number of test cases. T test cases follow.
Each test case contains a single positive integer N(1<=N<=1,000,000,000).

Output

For each test case, you should output the leftmost digit of N^N.

Sample Input

2

3

4

Sample Output

2

2

Hint

In the first case, 3 * 3 * 3 = 27, so the leftmost digit is 2.

In the second case, 4 * 4 * 4 * 4 = 256, so the leftmost digit is 2.

//这题不难读懂,就是说 N^N 的最高位是什么数字,第一行 t 代表测试数据组数

显然这不是模拟能解决的n有10亿,那么就肯定是数学题了

e = log10(N^N) = N * log10(N) (对数公式)

那么 10^e == N^N 然后想想 10^floor(e) 等于什么呢,不就是与 N^N 相同的位数,但最小的数吗?就是 1 后面都是 0 的数

而 floor( 10^(e-floor(e)) ) 就是就是要求的了

 1 #include<iostream>
 2 #include<cstdio>
 3 #include<cstring>
 4 #include<cmath>
 5 using namespace std;
 6
 7 int main()
 8 {
 9     int t;
10     int n;
11     scanf("%d",&t);
12     while(t--)
13     {
14         scanf("%d",&n);
15         double temp=n*log10(n*1.0);
16         double res=temp-floor(temp);
17         printf("%d\n",(int)pow(10.0,res));
18     }
19     return 0;
20 }

时间: 2024-10-02 00:26:01

Leftmost Digit(hdu1060)(数学题)的相关文章

&lt;hdu - 1600 - 1601&gt; Leftmost Digit &amp;&amp; Rightmost Digit 数学方法求取大位数单位数字

1060 - Leftmost Digit 1601 - Rightmost Digit 1060题意很简单,求n的n次方的值的最高位数,我们首先设一个数为a,则可以建立一个等式为n^n = a * 10^x;其中x也是未知的: 两边取log10有:lg(n^n) = lg(a * 10^x); 即:n * lg(n)  - x = lg(a); 现在就剩x一个变量了,我们知道x是值n^n的位数-1,a向下取整就是我们要求的数: 所以 按着上面的推导式翻译成代码就可以了(注意:数值的范围和之间的

HDU 1060 Leftmost Digit (数论)

Leftmost Digit Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 13680    Accepted Submission(s): 5239 Problem Description Given a positive integer N, you should output the leftmost digit of N^N.

HDU 1060 Leftmost Digit (数学/大数)

Leftmost Digit Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)Total Submission(s): 14954    Accepted Submission(s): 5775 Problem Description Given a positive integer N, you should output the leftmost digit of N^N.

Leftmost Digit(杭电1060)(求N^N的最高位)

Leftmost Digit Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 13574    Accepted Submission(s): 5216 Problem Description Given a positive integer N, you should output the leftmost digit of N^N.

Leftmost Digit(数学)

Description Given a positive integer N, you should output the leftmost digit of N^N. Input The input contains several test cases. The first line of the input is a single integer T which is the number of test cases. T test cases follow. Each test case

水题 第三站 Leftmost Digit

完全没想到要用对数解决这个问题,看了网上的思路觉得很妙,也学到了解决大数问题的一个新方法,在这里尝试解释一下. 求N^N的第一位数字是多少 取对数log10(N^N)=N*log10(N) N^N=10^(N*log10(N))=10^N*10^log10(N) 因为10^M当M为整数时,第一位肯定是1,所以取决于N*log10(N)的小数部分,即m=N*log10(N)-(long long)N*log10(N); 要注意的细节很多 #include <iostream> #include

HDU 1060 [Leftmost Digit]数学

题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1060 题目大意:求N^N的最高位数字. 关键思想:换底公式使结果变为10^(N*log10(N)),再除以10^(digits-1)就OK了. 代码如下: //运用换底公式避免幂运算,取整处理. #include <iostream> #include <cmath> using namespace std; int main(){ int T; double N; cin>&g

HDU 1060 Leftmost Digit

http://acm.hdu.edu.cn/showproblem.php?pid=1060 题意: 求N^N的首位数字 解法: 取对数orz 不然肯定溢出 n=10^x*m => lgn=x+lg(m) 注意用long long取整 代码: 0MS  1068K #include <cstdio> #include <cmath> using namespace std; int main() { int t, n; scanf("%d", &t

HDU 1060 Leftmost Digit (数学log)

题意:给定一个数n,让你求出n的n次方的第一位数. 析:一看这个n快到int极限了,很明显不能直接做,要转化一下.由于这是指数,我们可以把指数拿下来. 也就是取对数,设ans = n ^ n,两边取以10为底对数 lg(ans) = n * lg(10),然后这个整数部分都是10的多次方, 没什么用,也就是说我们要的小数部分,然后再取指数,就OK了.还要注意要用long long因为可能超int了,第一次忘了,WA了. 代码如下: #include <iostream> #include &l