본문 바로가기
알고리즘/기초수학

[java 백준] 브론즈 2/ 2745번 진법 변환

by Meaning_ 2021. 9. 7.
728x90
반응형

https://www.acmicpc.net/problem/2745

 

2745번: 진법 변환

B진법 수 N이 주어진다. 이 수를 10진법으로 바꿔 출력하는 프로그램을 작성하시오. 10진법을 넘어가는 진법은 숫자로 표시할 수 없는 자리가 있다. 이런 경우에는 다음과 같이 알파벳 대문자를 

www.acmicpc.net

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
import java.io.IOException;
import java.util.Scanner;
 
public class Main {
 
    public static void main(String[] args) throws IOException {
        Scanner sc = new Scanner(System.in);
 
        StringBuilder sb = new StringBuilder();
 
        String s = sc.next();
        int len = s.length();
        int[] arr = new int[len];
        int B = sc.nextInt();
        long total = 0;
 
        for (int j = 0; j < len; j++) {
            if ('A' <= s.charAt(j) && s.charAt(j) <= 'Z') {
                arr[j] = (int) s.charAt(j) - 55;
            } else if ('0' <= s.charAt(j) && s.charAt(j) <= '9') {
                arr[j] = (int) s.charAt(j) - 48;
            }
 
        }
        for (int j = 0; j < len - 1; j++) {
            total = (total + arr[j]) * B;
 
        }
        total += arr[len - 1];
        sb.append(total);
 
        System.out.println(sb.toString());
 
    }
 
}
cs

 

728x90
반응형

댓글