-
Notifications
You must be signed in to change notification settings - Fork 2
/
encryption.js
56 lines (48 loc) · 1.15 KB
/
encryption.js
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
process.stdin.resume();
process.stdin.setEncoding('ascii');
var input_stdin = "";
var input_stdin_array = "";
var input_currentline = 0;
process.stdin.on('data', function (data) {
input_stdin += data;
});
process.stdin.on('end', function () {
input_stdin_array = input_stdin.split("\n");
main();
});
function readLine() {
return input_stdin_array[input_currentline++];
}
/////////////// ignore above this line ////////////////////
function encryption(s) {
// Complete this function
const L = s.length;
const sqrt = Math.floor(Math.sqrt(L));
let r, c;
if (sqrt * sqrt >= L) {
r = sqrt;
c = sqrt;
} else if (sqrt * (sqrt + 1) >= L) {
r = sqrt;
c = sqrt + 1;
} else {
r = sqrt + 1;
c = sqrt + 1;
}
let result = [];
for (let i = 0; i < c; i++) {
let j = i;
let es = '';
while (j < s.length) {
es = `${es}${s[j]}`;
j += c;
}
result.push(es);
}
return result.join(' ');
}
function main() {
var s = readLine();
var result = encryption(s);
process.stdout.write("" + result + "\n");
}