-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathDecoding.java
32 lines (30 loc) · 932 Bytes
/
Decoding.java
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
32
/*https://codeforces.com/problemset/problem/746/B*/
import java.io.InputStreamReader;
import java.io.BufferedReader;
import java.io.IOException;
public class Decoding
{
public static void main(String[] args)throws IOException
{
BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));
int n = Integer.parseInt(reader.readLine());
char currChar;
StringBuffer data = new StringBuffer(reader.readLine());
StringBuffer resultL = new StringBuffer("");
StringBuffer resultR = new StringBuffer("");
while (data.length() > 1)
{
currChar = data.charAt(data.length()-1);
resultR.append(currChar);
currChar = data.charAt(data.length()-2);
resultL.append(currChar);
data.delete(data.length()-2,data.length());
}
StringBuffer result = resultL;
if (data.length() == 1)
result.append(data.charAt(0));
resultR.reverse();
result.append(resultR);
System.out.println(result);
}
}