Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 확인문제
- 한국재정정보원
- 건보필기
- 공부
- 이클립스
- 필기후기
- 웹프로그래밍
- BOJ
- algorithm
- HTML
- 연결요소의개수
- 정수내림차순으로배치하기
- 부스트코스
- 코딩
- 인강
- 프로그래밍
- 후기
- 웹개발
- CSS
- 수박수박수박수박수?
- 웹
- 백준
- 필기
- 농은면접
- java
- 프로그래머스
- 프로그래밍언어
- Linux
- 중소기업면접
- 알고리즘
Archives
- Today
- Total
공부하는 히욤이
1928. Base64 Decoder 본문
SW Expert 1928. Base64 Decoder
* 문제의 저작권은 SW Expert에 있습니다
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 | package swea; import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.util.Base64; import java.util.Base64.Decoder; public class Solution_1928 { public static void main(String[] args) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); int T = Integer.parseInt(br.readLine()); for (int test_case = 1; test_case <= 10; test_case++) { String s= br.readLine(); String result = new String( Base64.getDecoder().decode(s)); System.out.println("#"+test_case + " " +result); } } } | cs |
'Algorithm > SW Expert Academy' 카테고리의 다른 글
1221. [S/W 문제해결 기본] 5일차 - GNS (0) | 2019.03.05 |
---|---|
3408. 세가지 합 구하기 (0) | 2019.03.05 |
2043. 서랍의 비밀번호 (0) | 2019.03.05 |
1959. 두 개의 숫자열 (0) | 2019.03.02 |
1948. 날짜 계산기 (0) | 2019.03.02 |