国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > Python > 正文

leetcode 492 python

2019-11-06 07:56:50
字體:
來源:轉載
供稿:網友

For a web developer, it is very important to know how to design a web page’s size. So, given a specific rectangular web page’s area, your job by now is to design a rectangular web page, whose length L and width W satisfy the following requirements: 1. The area of the rectangular web page you designed must equal to the given target area.

The width W should not be larger than the length L, which means L >= W.

The difference between length L and width W should be as small as possible. You need to output the length L and the width W of the web page you designed in sequence.

Example: Input: 4 Output: [2, 2] Explanation: The target area is 4, and all the possible ways to construct it are [1,4], [2,2], [4,1]. But according to requirement 2, [1,4] is illegal; according to requirement 3, [4,1] is not optimal compared to [2,2]. So the length L is 2, and the width W is 2.

class Solution(object): def constructRectangle(self, area): “”” :type area: int :rtype: List[int] “”” out = [] a = math.sqrt( area) b = int(a)

for x in range(b,0,-1): h = area//x PRint(h) if x * (h) == area: out.append(h) out.append(x) break return outtion(object):def constructRectangle(self, area): """ :type area: int :rtype: List[int] """ mid = int(math.sqrt(area)) while mid > 0: if area % mid == 0: return [(area // mid), int(mid)] mid -= 1
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 朔州市| 吉木乃县| 青铜峡市| 张家界市| 上饶市| 陈巴尔虎旗| 农安县| 海城市| 延边| 广丰县| 龙山县| 社旗县| 弥勒县| 图木舒克市| 如东县| 利辛县| 潍坊市| 阿鲁科尔沁旗| 神农架林区| 锦州市| 龙里县| 岱山县| 玛纳斯县| 修水县| 仁怀市| 海门市| 饶平县| 阳城县| 松溪县| 张家界市| 邛崃市| 延安市| 榆中县| 墨江| 锡林郭勒盟| 青川县| 阿拉善左旗| 济源市| 武功县| 卢湾区| 延津县|