https://www.acmicpc.net/problem/2738
정답
import java.io.IOException;
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.io.BufferedWriter;
import java.io.OutputStreamWriter;
public class Main{
public static void main(String[] args) throws IOException{
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(System.out));
String[] nm = br.readLine().split(" "); // 3 3
int n = Integer.parseInt(nm[0]); //3
int m = Integer.parseInt(nm[1]); //3
int[][] arr = new int[n][m];
int[][] result=new int[n][m];
for(int i=0;i<n;i++){
String[] s = br.readLine().split(" ");
for(int j=0;j<m;j++){
arr[i][j] = Integer.parseInt(s[j]);
}
}
for(int i=0;i<n;i++){
String[] s = br.readLine().split(" ");
for(int j=0;j<m;j++){
result[i][j] = arr[i][j] + Integer.parseInt(s[j]);
}
}
for(int[] ints: result){
for(int anInt : ints){
bw.write(anInt +" ");
}
bw.newLine();
}
bw.flush();
}
}
풀이
'JAVA > 백준' 카테고리의 다른 글
[Java] 10798번 : 세로읽기 (0) | 2024.09.27 |
---|---|
[Java] 2566번 : 최댓값 (0) | 2024.09.27 |
[Java] 10988번 : 팰드린롬인지 확인하기 (0) | 2024.09.20 |
[Java] 11718번 : 그대로 출력하기 (0) | 2024.09.20 |
[Java] 2908번 : 상수 (0) | 2024.09.20 |