当前位置:网站首页>69. Sqrt(x)x 的平方根
69. Sqrt(x)x 的平方根
2022-07-30 08:49:00 【DXB2021】
Given a non-negative integer x, compute and return the square root of x.
给你一个非负整数 x ,计算并返回 x 的 算术平方根 。
Since the return type is an integer, the decimal digits are truncated, and only the integer part of the result is returned.
由于返回类型是整数,结果只保留 整数部分 ,小数部分将被 舍去 。
Note: You are not allowed to use any built-in exponent function or operator, such as pow(x, 0.5) or x ** 0.5.
注意:不允许使用任何内置指数函数和算符,例如 pow(x, 0.5) 或者 x ** 0.5 。
Example 1:示例 1:
Input: x = 4
Output: 2
Example 2:示例 2:
Input: x = 8
Output: 2
Explanation: The square root of 8 is 2.82842..., and since the decimal part is truncated, 2 is returned.
Constraints:提示:
0 <= x <=
- 1
C语言:
int mySqrt(int x){
long max=1;
while(max*max<=x)
{
max++;
}
return max-1;
}执行结果:通过
执行用时:24 ms, 在所有 C 提交中击败了10.23%的用户
内存消耗:5.5 MB, 在所有 C 提交中击败了45.56%的用户
通过测试用例:1017 / 1017
边栏推荐
- 0729放假自习
- 都说FPGA高端,它到底能干啥?
- Oracle 创建和操作表
- Activating data potential Amazon cloud technology reshapes cloud storage "family bucket"
- els 方块停在方块上。
- 2022/07/29 Study Notes (day19) Exception Handling
- One article to understand twenty kinds of switching power supply topologies
- els 方块向左移动
- 代码随想录笔记_哈希_202 快乐数
- 自动化测试selenium(一)
猜你喜欢
随机推荐
反射技巧让你的性能提升 N 倍
2022/07/29 Study Notes (day19) Exception Handling
积分专题笔记-积分的定义
How to run dist file on local computer
Jenkins 如何玩转接口自动化测试?
TreeSet解析
Network/Information Security Top Journal and Related Journals Conference
Circuit analysis: constant current source circuit composed of op amp and triode
【零基础玩转BLDC系列】以GD32F30x为例定时器相关功能详解
[Unity]UI切换环形滚动效果
Activating data potential Amazon cloud technology reshapes cloud storage "family bucket"
如何使用 Jmeter 进行抢购、秒杀等场景下,进行高并发?
Only after such a stage of development can digital retail have a new evolution
研发人员的悲剧——“庞氏骗局”
2022 Hangzhou Electric Multi-School 2nd Game
20个电路能懂5个以上,足以证明你在电子行业混过!
PCB板加工流程中哪些因素会影响到传输线阻抗
An article to understand service governance in distributed development
PyQt5快速开发与实战 7.4 事件处理机制入门 and 7.5 窗口数据传递
els 方块、背景上色









