반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- boj
- 손경제 요약
- 주식 분석
- 경제뉴스 요약
- 주식 상한가
- 파이썬
- 이진우의 손에 잡히는 경제
- 경제
- Python
- 코딩테스트
- java
- 손에 잡히는 경제
- 상한가
- 경제뉴스
- 백준
- Programmers
- 급등주
- 자바
- 주식
- 손경제
- 코테
- 급등 이유
- 알고리즘
- 손에 잡히는 경제 요약
- 상한가 이유
- 프로그래머스
- 이진우
- 급등주 분석
- 상한가 분석
- 테마주
Archives
- Today
- Total
Completion over Perfection
백준 2738 - 행렬 덧셈 (자바 JAVA 풀이) 본문
반응형
https://www.acmicpc.net/problem/2738
2차원 배열을 2개 선언해주고(arr1, arr2), 각각 받아준 뒤 새로운 2차원 배열(ans)에 더해서 넣어주면 됩니다.
자세한 풀이는 아래 코드를 참고해주세요.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
import java.io.*;
import java.util.*;
public class test {
static int N, M;
static int [][] arr1, arr2;
public static void main(String args[]) throws Exception {
Scanner sc = new Scanner(System.in);
N = sc.nextInt();
M = sc.nextInt();
arr1 = new int[N+1][M+1];
arr2 = new int[N+1][M+1];
for(int i=1; i<=N; i++){
for(int j=1; j<=M; j++){
arr1[i][j] = sc.nextInt();
}
}
for(int i=1; i<=N; i++){
for(int j=1; j<=M; j++){
arr2[i][j] = sc.nextInt();
}
}
int [][] ans = new int [N+1][M+1];
for(int i=1; i<=N; i++){
for(int j=1; j<=M; j++){
ans[i][j] = arr1[i][j] + arr2[i][j];
}
}
for(int i=1; i<=N; i++){
for(int j=1; j<=M; j++){
System.out.print(ans[i][j] + " ");
}System.out.println();
}
}
}
|
cs |
반응형
Comments