forked from prabaprakash/Hackerrank-JavaScript-Solutions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathonce-in-a-tram.js
51 lines (44 loc) · 1.14 KB
/
once-in-a-tram.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
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 pad(num, size) {
var s = num+"";
while (s.length < size) s = "0" + s;
return s;
}
function onceInATram(x) {
while(1) {
let left = parseInt(x[0]) +parseInt(x[1])+parseInt(x[2]);
for(let j=parseInt(x.slice(3,6))+1;j<1000;j++)
{
// console.log(j)
let str = pad(j,3);
let right = parseInt(str[0]) +parseInt(str[1])+parseInt(str[2]);
// console.log(right)
if(left === right)
{
return x.slice(0,3)+str;
}
}
let nest = parseInt(x.slice(0,3))+1
x = nest+"000";
}
}
function main() {
var x = readLine();
var result = onceInATram(x);
process.stdout.write("" + result + "\n");
}