java에서는 Base64 라이브러리가 있어서 쉽게 구현할 수 있었다.
한 번 직접 구현해봐도 좋을 것 같다.
import java.io.*; import java.util.Base64; public class Solution { public static void main(String[] args) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); int T = Integer.parseInt(br.readLine()); for(int tc=1; tc<=T; tc++) { String encoded = br.readLine(); String decoded = new String(Base64.getDecoder().decode(encoded)); System.out.println("#"+tc+" "+decoded); } } }
'SWEA > D2' 카테고리의 다른 글
[SWEA] 1284. 수도 요금 경쟁 (0) | 2019.05.19 |
---|---|
[SWEA] 1288. 새로운 불면증 치료법 (0) | 2019.05.16 |
[SWEA] 1859. 백만 장자 프로젝트 (1) | 2019.05.16 |
[SWEA] 1940. 가랏! RC카! (0) | 2019.05.14 |
[SWEA] 1945. 간단한 소인수분해 (0) | 2019.05.14 |