我是靠谱客的博主 过时春天,最近开发中收集的这篇文章主要介绍ICPC Asia Nanning 2017 F. The Chosen One (高精度运算),觉得挺不错的,现在分享给大家,希望可以做个参考。
概述
题目链接:The Chosen One
比赛链接:ICPC Asia Nanning 2017
题意
(t) 组样例,每组给出一个整数 (n(2le nle 10^{50})),求不大于 (n) 的最大的 (2) 的整数次幂。
题解
高精度运算
Java BigInteger
中的 bitLength()
方法可以直接计算某个大数二进制表示下的位数。
更多关于 Java BigInteger
的操作参见我的另一篇文章 大数运算之 Java BigInteger 的基本用法
import java.util.Scanner;
import java.math.BigInteger;
public class Main {
public static void main(String[] args) {
Scanner in = new Scanner(System.in);
int t = in.nextInt();
while (t-->0){
BigInteger n = in.nextBigInteger();
BigInteger ans = new BigInteger("2");
System.out.println(ans = ans.pow(n.bitLength() - 1));
}
}
}
转载于:https://www.cnblogs.com/wulitaotao/p/11360526.html
最后
以上就是过时春天为你收集整理的ICPC Asia Nanning 2017 F. The Chosen One (高精度运算)的全部内容,希望文章能够帮你解决ICPC Asia Nanning 2017 F. The Chosen One (高精度运算)所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复