Kevin234


私信TA

用户名:Kevin234

访问量:20491

签 名:

手可摘星辰

等  级
排  名 849
经  验 3622
参赛次数 0
文章发表 40
年  龄 0
在职情况 学生
学  校 南京信息工程大学
专  业

  自我简介:

解题思路:

注意事项:

参考代码:

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

public class T1908 {
	public static void main(String[] args) {
		Scanner in = new Scanner(System.in);
		while(in.hasNext()){
			int ai = in.nextInt(),aj = in.nextInt();
			long [][]a = new long[ai][aj];
			for(int i = 0;i<ai;i++){
				for(int j = 0;j<aj;j++){
					a[i][j] = in.nextLong();
				}
			}
			int bi = in.nextInt(),bj = in.nextInt();
			long [][]b = new long[bi][bj];
			for(int i = 0;i<bi;i++){
				for(int j = 0;j<bj;j++){
					b[i][j] = in.nextLong();
				}
			}
			for(int i = 0;i<ai;i++){
				for(int j = 0;j<bj;j++){
					BigInteger sum = new BigInteger("0");
					for(int k = 0;k<aj;k++){
						sum = sum.add(new BigInteger(""+a[i][k]*b[k][j]));
					}
					if(j != bj-1)
						System.out.print(sum.toString()+ " ");
					else
						System.out.println(sum.toString());
				}
			}
		}
		in.close();
	}

}


 

0.0分

0 人评分

  评论区

  • «
  • »