-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstaircase.js
44 lines (35 loc) · 856 Bytes
/
staircase.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
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 main () {
var s = parseInt(readLine())
for (var a0 = 0; a0 < s; a0++) {
var n = parseInt(readLine())
console.log(staircase(n))
}
}
const cache = { '0': 1 }
function staircase (n) {
if (n < 0) {
return 0
}
if (n.toString() in cache) {
return cache[n.toString()]
}
const ways = staircase(n - 1) + staircase(n - 2) + staircase(n - 3)
cache[n.toString()] = ways
return ways
}