HDU 5241 Friends (大数)

Posted dwtfukgv

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了HDU 5241 Friends (大数)相关的知识,希望对你有一定的参考价值。

题意:略。

析:答案就是32^n。

代码如下:

import java.math.BigInteger;
import java.util.Scanner;

public class Main{
	public static final int maxn = 3000 + 5;
	public static BigInteger []ans;
	
	public static void main(String[] args){
		Scanner cin = new Scanner(System.in);
		int T = cin.nextInt();
		ans = new BigInteger[maxn];
		ans[0] = BigInteger.ONE;
		for(int i = 1; i <= 3000; ++i)
			ans[i] = ans[i-1].multiply(BigInteger.valueOf(32));
		for(int kase = 1; kase <= T; ++kase){
			int n = cin.nextInt();
			System.out.println("Case #" + kase + ": " + ans[n]);
		}
	}
}

  

以上是关于HDU 5241 Friends (大数)的主要内容,如果未能解决你的问题,请参考以下文章

HDU 5305 Friends (搜索+剪枝) 2015多校联合第二场

HDU 5119 Happy Matt Friends ——(背包DP)

[多校2015.02.1006 高斯消元] hdu 5305 Friends

HDU 3172 Virtual Friends (map+并查集)

Virtual Friends (HDU3172)

HDU 5305 Friends (DFS)