반응형
📖 문제
📋 코드
import java.util.*;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
String s = sc.next();
int N = sc.nextInt();
int tmp = 1;
int ans = 0;
for (int i = s.length()-1; i >= 0; i--) {
char c = s.charAt(i);
if('A'<= c && c <= 'Z') {
ans += (c-'A'+10)*tmp;
}else {
ans += (c-'0')*tmp;
}
tmp *= N;
}
System.out.println(ans);
}
}
👨🏻💻 결과
🔗 링크
https://www.acmicpc.net/problem/2745
반응형
'🧩PS > 🥉Easy' 카테고리의 다른 글
[JAVA] 백준 1541번 - 잃어버린 괄호 (0) | 2021.11.05 |
---|---|
[JAVA] 백준 11399번 - ATM (0) | 2021.11.05 |
[JAVA] 백준 11047번 - 동전 0 (0) | 2021.10.27 |
[JAVA] 백준 1912번 - 연속합 (0) | 2021.10.26 |
[JAVA] 백준 11053번 - 가장 긴 증가하는 부분 수열 (0) | 2021.10.24 |