[ENCRYPT] 문자열 암호화
개발이야기/알고스팟2021. 12. 27. 13:55
Java로 풀어보는 알고리즘입니다. 📖
코딩테스트를 대비하여 Java1.8부터 제공되는 함수형 API는 사용하지 않습니다.
문제 : https://www.algospot.com/judge/problem/read/ENCRYPT
풀이입니다. 🤔
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
import java.util.*;
public class Main {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
int cases = scanner.nextInt();
while (cases-- > 0) {
String str = scanner.next();
int len = str.length();
for (int i = 0; i < len; i += 2) System.out.print(str.charAt(i));
for (int i = 1; i < len; i += 2) System.out.print(str.charAt(i));
System.out.println();
}
}
}
|
cs |
이 포스트를 읽어주셔서 감사합니다. 🙇🏻♂️
반응형
'개발이야기 > 알고스팟' 카테고리의 다른 글
[CONVERT] Conversions (0) | 2021.12.27 |
---|---|
[PICNIC] 소풍 (0) | 2021.12.27 |
[LECTURE] Lecture Note (0) | 2021.12.27 |
[DRAWRECT] 사각형 그리기 (0) | 2021.12.27 |
[ENDIANS] Endians (0) | 2021.12.27 |