728x90
반응형
https://www.acmicpc.net/problem/2745
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
반응형
'알고리즘 > 기초수학' 카테고리의 다른 글
[java 백준] 실버 5/11576번 Base Conversion (0) | 2021.09.13 |
---|---|
[java 백준] 실버 4/ 2089번 -2진수 (0) | 2021.09.12 |
[java 백준]브론즈 1/ 11005번 진법 변환 2 (0) | 2021.09.05 |
[java 백준] 실버 3/ 9613번 GCD 합 (0) | 2021.09.04 |
[java 백준] 실버 2/ 1850번 최대공약수 (0) | 2021.09.04 |
댓글