当前位置: 代码迷 >> 综合 >> Leetcode 1359. 有效的快递序列数目(DAY 61) ----动态规划学习期(第一题昨晚熬夜想把浙大Python题做完)
  详细解决方案

Leetcode 1359. 有效的快递序列数目(DAY 61) ----动态规划学习期(第一题昨晚熬夜想把浙大Python题做完)

热度:97   发布时间:2023-11-17 19:47:32.0

原题题目

在这里插入图片描述



代码实现

int countOrders(int n){
    int i,mod = 1000000007,temp;long pre = 1,now = 1;for(i=1;i<n;i++){
    pre = now,temp = i*2+1;now = ((temp+1) * temp * pre /2)  % mod;  }return now;
}