美文网首页
leetcode 剑指 Offer 14- II. 剪绳子 II

leetcode 剑指 Offer 14- II. 剪绳子 II

作者: flood_d | 来源:发表于2021-01-31 10:15 被阅读0次

    0.code

    class Solution {
        public int cuttingRope(int n) {
            if(n==2){
                return 1;
            }
            if(n==3){
                return 2;
            }
            int mod = 1000000007;
            long res = 1;
            while(n>4){
                res = res*3;
                res = res%mod;
                n = n -3;
            }
            return (int)(res*n%mod);
        }
    }
    

    相关文章

      网友评论

          本文标题:leetcode 剑指 Offer 14- II. 剪绳子 II

          本文链接:https://www.haomeiwen.com/subject/qgnltltx.html