1 Star 1 Fork 0

bensonrachel/Atcoder_algorithm

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
(step2)E - Equation(CF).py 731 Bytes
一键复制 编辑 原始数据 按行查看 历史
# -*- coding: utf-8 -*-
# @project : 《Atcoder》
# @Author : created by bensonrachel on 2021/7/21
# @File : (step2)E - Equation(CF).py
# https://codeforces.com/edu/course/2/lesson/6/2/practice/contest/283932/problem/E
import sys
#又是一道非整数的二分
def bi_Equation(c):
l = 0
r = c
for _ in range(100): # Usually, you can always write 100 iterations and not think.
mid = (l + r) / 2 # float类型
if (mid * mid + mid ** 0.5 <= c):
l = mid
else:
r = mid
return r
if __name__ == "__main__":
c = float(sys.stdin.buffer.readline())
res = bi_Equation(c)
print(res)
"""
**这种求幂的方法只适合正数。
返回l r都ac
"""
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/bensonrachel/atcoder_algorithm.git
git@gitee.com:bensonrachel/atcoder_algorithm.git
bensonrachel
atcoder_algorithm
Atcoder_algorithm
master

搜索帮助