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

Leetcode 319 Bulb Switcher 找规律

时间:2016-01-16 22:14:21      阅读:157      评论:0      收藏:0      [点我收藏+]

标签:

有n盏关着的灯,第k轮把序号为k倍数的关着的灯打开,开着的灯关闭。

class Solution {
public:
    int bulbSwitch(int n) {
        return (int)sqrt(n*1.0);
    }
};

 

Leetcode 319 Bulb Switcher 找规律

标签:

原文地址:http://www.cnblogs.com/onlyac/p/5136361.html

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