博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
HDU 1060:Leftmost Digit
阅读量:6289 次
发布时间:2019-06-22

本文共 1176 字,大约阅读时间需要 3 分钟。

Leftmost Digit

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


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=x ,两边取对数:log(N*N)=N*log N=log x,10^(N*log N)=x,因为10的任何整数次方的首位都是1,所以x的首位数和N*log N的小数部分有关

#include
#include
#include
#include
#include
#define ll long longusing namespace std;int main(){ int t; ll n; double x; cin>>t; while(t--) { cin>>n; x=n*log10((double)n); x-=(ll)x; x=(int)pow(10,x); cout<
<

转载于:https://www.cnblogs.com/Friends-A/p/9309021.html

你可能感兴趣的文章
留德十年
查看>>
迷人的卡耐基说话术
查看>>
PHP导出table为xls出现乱码解决方法
查看>>
PHP问题 —— 丢失SESSION
查看>>
Java中Object类的equals()和hashCode()方法深入解析
查看>>
数据库
查看>>
Vue------第二天(计算属性、侦听器、绑定Class、绑定Style)
查看>>
dojo.mixin(混合进)、dojo.extend、dojo.declare
查看>>
Python 数据类型
查看>>
iOS--环信集成并修改头像和昵称(需要自己的服务器)
查看>>
PHP版微信权限验证配置,音频文件下载,FFmpeg转码,上传OSS和删除转存服务器本地文件...
查看>>
教程前言 - 回归宣言
查看>>
PHP 7.1是否支持操作符重载?
查看>>
Vue.js 中v-for和v-if一起使用,来判断select中的option为选中项
查看>>
Java中AES加密解密以及签名校验
查看>>
定义内部类 继承 AsyncTask 来实现异步网络请求
查看>>
VC中怎么读取.txt文件
查看>>
如何清理mac系统垃圾
查看>>
企业中最佳虚拟机软件应用程序—Parallels Deskto
查看>>
Nginx配置文件详细说明
查看>>