๋ฐ์ํ Repeating Cipher1 [Codeforces] 1095A: Repeating Cipher https://codeforces.com/problemset/problem/1095/A Problem - 1095A - Codeforces codeforces.com ์ฝ๋ import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scan = new Scanner(System.in); int n = scan.nextInt(); String str = scan.next(); String result = ""; int index = 0; for(int i=0; i= str.length()) break; result += str.charAt(index); index += (i+1); } System... 2020. 3. 9. ์ด์ 1 ๋ค์ ๋ฐ์ํ