728x90
문제 링크
https://www.acmicpc.net/problem/1550
풀이 코드
- Integer.parseInt(String s, int radix) 활용
public class Main {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
String s = br.readLine();
System.out.println(Integer.parseInt(s, 16));
}
}
'알고리즘 문제풀이 > 백준' 카테고리의 다른 글
[백준] 2845 파티가 끝나고 난 뒤 - 자바 (0) | 2021.09.16 |
---|---|
[백준] 2338 긴자리 계산 - 자바, BigInteger (0) | 2021.09.15 |
[백준] 1271 엄청난 부자2 - 자바, BigInteger (0) | 2021.09.15 |
[백준] 9019 DSLR - 자바, BFS(너비 우선 탐색) (0) | 2021.07.25 |
[백준] 14889 스타트와 링크 - 자바, DFS(깊이 우선 탐색) (0) | 2021.07.23 |
댓글