全部评论
瓷砖地毯感觉写的没错,状态转移方程f(n) = f(n-1) + f(n-2) + f(n-3),测试样例过了,为什么后台测试通过0%,有人知道么?
我也是这个问题,dp自测也能过,但是提交就通过0😂
瓷砖地毯这个题,我的javascript代码大概是这样的,有AC的同学能帮忙看下为啥后台测试通过0%吗? let num = readline() for (let i = 0; i < num; i++) { let line = readline() let n = parseInt(line) if (n <= 2) { console.log(n) } if (n == 3) { console.log(4) } else if (n > 3) { let a = 1 let b = 2 let c = 4 for (let i = 4; i <= n; i++) { let tempC = c, tempB = b c = c + b + a b = tempC a = tempB } console.log(c % 10007) } } 难道是计算c、b、a的时候也需要mod 10007吗😓
有人会做第四题么
相关推荐