首页 > 试题广场 >

星际穿越

[编程题]星际穿越
  • 热度指数:43298 时间限制:C/C++ 1秒,其他语言2秒 空间限制:C/C++ 32M,其他语言64M
  • 算法知识视频讲解
航天飞行器是一种复杂而又精密的仪器,飞行器的损耗主要集中在发射和降落的过程,科学家根据实验数据估计,如果在发射过程中,产生了 x 程度的损耗,那么在降落的过程中就会产生 x2 程度的损耗,如果飞船的总损耗超过了它的耐久度,飞行器就会爆炸坠毁。问一艘耐久度为 h 的飞行器,假设在飞行过程中不产生损耗,那么为了保证其可以安全的到达目的地,只考虑整数解,至多发射过程中可以承受多少程度的损耗?

数据范围:

输入描述:
每个输入包含一个测试用例。每个测试用例包含一行一个整数 h (1 <= h <= 10^18)。


输出描述:
输出一行一个整数表示结果。
示例1

输入

10

输出

2
示例2

输入

1

输出

0
头像 c小白进击之路
发表于 2021-04-05 15:48:40
unsigned long long 范围0-18446744073709551615 在本编译环境中 %d=%ld 用%lld (%d=int,%ld=long,%lld=long long;) #include<stdio.h> #include< 展开全文
头像 鼠鼠我呀要失业了捏
发表于 2022-09-03 15:31:07
import java.util.Scanner; public class Main {     public static void main(String[] args)& 展开全文
头像 牛客209329324号
发表于 2020-11-11 15:52:56
import java.util.Scanner;public class Main{ public static void main(String[] args){ Scanner s=new Scanner(System.in); long h=s.nextLong 展开全文
头像 我不打朋友圈
发表于 2021-12-15 11:30:31
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.lang.Math; public class Main{ public static v 展开全文
头像 云林s
发表于 2023-10-15 19:48:12
using System; using System.Collections.Generic; public class Program { public static void Main() { double max = double.Parse(Console.Read 展开全文
头像 牛客669158664号
发表于 2021-08-16 13:31:10
include<stdio.h> include<math.h> int main(){ long h; while(scanf("%ld",&h)!=EOF) { for(long i=sqrt(h);i>0;i- 展开全文
头像 牛客444857323号
发表于 2023-08-16 17:04:49
import sys import math n = int(input()) l = int((-1 + math.sqrt(1 + 4 * n)) / 2) print(l)
头像 Ⅲ_Dc
发表于 2022-03-04 10:33:13
cin有位数限制, 省去了强制转换, pow也可以代替sqrt用 ">#include<stdio.h> #include<iostream> using namespace std; int main(void) { long long h; //cin&g 展开全文
头像 郭富成
发表于 2022-02-18 17:50:10
import java.util.Scanner; /** * @ClassName Main * @Description * @Author fucheng.guo * @Since 2022-2-18 16:30 */ public class Main { public 展开全文
头像 牛客328964442号
发表于 2021-09-06 14:38:53
一元二次方程求解 #include<stdio.h> #include<math.h> int main() { long long h; scanf("%lld", &h); long long ans = (-1 + 展开全文

问题信息

难度:
181条回答 18422浏览

热门推荐

通过挑战的用户

查看代码
星际穿越