“今日头条杯”首届湖北省大学程序设计竞赛(网络同步赛)H. GSS and Simple Math Problem

题目描述 

Given n positive integers  , your task is to calculate the product of these integers, The answer is less than 

输入描述:

 
  
The first line of input is an integer n, the i-th of the following n lines contains the integer

输出描述:

Output one line with the answer 
示例1

输入

5
11
12
13
14
15

输出

360360
思路:大数的连乘。

java代码:

import java.math.BigInteger;
    import java.util.*;
    import java.io.*;
 
 
public class Main {
 
 
    public static void main(String[] args) {
        Scanner cin = new Scanner (System.in);
        int t = cin.nextInt();
        BigInteger ans = cin.nextBigInteger();
        for(;t>1;t--){
            BigInteger a = cin.nextBigInteger();
            ans = ans.multiply(a);
        }
        System.out.println(ans);;
    }
     
     
}
 Python 3 代码:
n = int(input())
 
res = 1
for i in range(n):
    res *= int(input())
 
print(res)



猜你喜欢

转载自blog.csdn.net/sugarbliss/article/details/80046125
今日推荐