标签:des style blog http color java os io
http://acm.hdu.edu.cn/showproblem.php?pid=4927
同学用java写的大整数相减
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 262144/262144 K (Java/Others) Total Submission(s): 295 Accepted Submission(s): 100
import java.math.BigInteger; import java.util.*; import java.io.*; public class Main { public static void main(String args[]) { Scanner in = new Scanner(System.in); int t = in.nextInt(); int a[] = new int[3005]; for (int cas = 1; cas <= t; cas++) { int n = in.nextInt(); int i, j; for (i = 1; i <= n; ++i) { a[i] = in.nextInt(); } BigInteger ans = BigInteger.valueOf(a[n]); BigInteger x = BigInteger.valueOf(1); BigInteger flag = BigInteger.valueOf(-1); n = n -1; for(i=1,j=n; i<=n; i++,j--) { x = x.multiply(BigInteger.valueOf(j)).divide(BigInteger.valueOf(i)); x = x.multiply(flag); ans = ans.add(x.multiply(BigInteger.valueOf(a[j]))); } System.out.println(ans); } } }
HDU-4927 Series 1,布布扣,bubuko.com
标签:des style blog http color java os io
原文地址:http://www.cnblogs.com/cancangood/p/3897912.html