Notice
Recent Posts
Recent Comments
Link
«   2024/11   »
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
Tags
more
Archives
Today
Total
관리 메뉴

코드와이

[SW Expert Academy] 1232. [S/W 문제해결 기본] 9일차 - 사칙연산 본문

SW_Expert

[SW Expert Academy] 1232. [S/W 문제해결 기본] 9일차 - 사칙연산

코드와이 2021. 2. 26. 10:27

 

문제링크

swexpertacademy.com/main/code/problem/problemDetail.do?problemLevel=4&contestProbId=AV141J8KAIcCFAYD&categoryId=AV141J8KAIcCFAYD&categoryType=CODE&problemTitle=&orderBy=PASS_RATE&selectCodeLang=JAVA&select-1=4&pageSize=10&pageIndex=1

 

SW Expert Academy

SW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요!

swexpertacademy.com

 

package D4;

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class 사칙연산 {

	public static void main(String[] args) throws NumberFormatException, IOException {
		
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		StringBuilder sb = new StringBuilder();
		
		for(int tc = 1 ; tc <= 10 ; tc++) {
			sb.append("#").append(tc).append(" ");
			
			int n = Integer.parseInt(br.readLine());
			
			char[] arr = new char[n+1];
			int[] left = new int[n+1];
			int[] right = new int[n+1];
			int[] arr2 = new int[n+1];
			
			String[] str;
			
			int idx = 0;
			int end = 0;
			for(int i = 1 ; i <= n ; i++) {
				str = br.readLine().split(" ");
				idx = Integer.parseInt(str[0]);
				if(str.length == 4) {
					arr[idx] = str[1].charAt(0);
					left[idx] = Integer.parseInt(str[2]);
					right[idx] = Integer.parseInt(str[3]);
					end = idx;
				}
				else arr2[idx] = Integer.parseInt(str[1]);
			}
			
			for(int i = end ; i >= 1 ; i--) {
				if(arr[i] == '+') arr2[i] = arr2[left[i]] + arr2[right[i]];
				else if(arr[i] == '-') arr2[i] = arr2[left[i]] - arr2[right[i]];
				else if(arr[i] == '*') arr2[i] = arr2[left[i]] * arr2[right[i]];
				else if(arr[i] == '/') arr2[i] = arr2[left[i]] / arr2[right[i]];
			}
			
			sb.append(arr2[1]).append("\n");
		}
		sb.setLength(sb.length() - 1);
		System.out.println(sb);
	}
}