码迷,mamicode.com
首页 > 其他好文 > 详细

【剑指offer】【数学】62.圆圈中最后剩下的数字

时间:2020-04-19 15:02:50      阅读:60      评论:0      收藏:0      [点我收藏+]

标签:for   shu   ref   ems   turn   solution   sheng   leetcode   public   

题目链接:https://leetcode-cn.com/problems/yuan-quan-zhong-zui-hou-sheng-xia-de-shu-zi-lcof/

数学

class Solution {
public:
    int lastRemaining(int n, int m) {
        int ans = 0;
        for(int i = 2; i <= n; i++)
            ans = (ans + m) % i;
        return ans;
    }
};

【剑指offer】【数学】62.圆圈中最后剩下的数字

标签:for   shu   ref   ems   turn   solution   sheng   leetcode   public   

原文地址:https://www.cnblogs.com/Trevo/p/12731237.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!