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 |
Tags
- 백준
- 인강
- 필기후기
- 프로그래머스
- 후기
- 수박수박수박수박수?
- 이클립스
- HTML
- 한국재정정보원
- java
- 건보필기
- 코딩
- 프로그래밍언어
- 프로그래밍
- 정수내림차순으로배치하기
- 공부
- 웹개발
- 연결요소의개수
- 필기
- 중소기업면접
- CSS
- 웹프로그래밍
- 알고리즘
- 부스트코스
- 웹
- 농은면접
- algorithm
- Linux
- BOJ
- 확인문제
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 |