【2016小米 (二)-9】

    //百万数内 看数列离散点  根据 x 找接近 的数列数
#include<bits/stdc++.h>
using namespace std;
int funsteap(int xx)
 {
    int ret=0;
    //循环去构造数列是容易的
    int x=0;
    int y=1;
    int tmp=1;
    /*
    0  1   1  2   3  5 (7) 8
    
    */
    while(tmp<xx)
    {
        tmp=x+y;
        x=y;
        y=tmp;
    }
   // cout<<tmp<<endl;/*/后一个数 cout<<x<<endl; //前一个数/*/
    ret=(xx-x >tmp-xx)?tmp-xx:xx-x;
    return ret;    
}
int main()
    {
    int  xx=0;
    cin>>xx;
    cout<<funsteap(xx)<<endl;
    
    return 0;
}

您的代码已保存
答案正确:恭喜!您提交的程序通过了所有的测试用例

时间: 2024-12-16 02:54:58

【2016小米 (二)-9】的相关文章

爱奇艺、优酷、腾讯视频竞品分析报告2016(二)

接上一篇<爱奇艺.优酷.腾讯视频竞品分析报告2016(一)> http://milkyqueen520.blog.51cto.com/11233158/1760192 2.4 产品设计与交互 2.4.1  视觉风格 APP设计风格从视觉效果上至少给用户传达了两个信息:一是APP的整体基调.二是APP的目标人群. 在设计风格表现上,颜色占据了80%以上的视觉体验.因此要做好设计风格,主要做好界面的颜色搭配和分布.另外颜色是有情感的,不同的色彩能给于用户不同的印象和感受,而且不同的人群对颜色偏好也

爱奇艺、优酷、腾讯视频竞品分析报告2016(一)

1 背景 1.1 行业背景 1.1.1 移动端网民规模过半,使用时长份额超PC端 2016年1月22日,中国互联网络信息中心 (CNNIC)发布第37次<中国互联网络发展状况统计报告>,报告显示,网民的上网设备正在向手机端集中,手机成为拉动网民规模增长的主要因素.截至2015年12月,我国手机网民规模达6.20亿,有90.1%的网民通过手机上网. 图 1  2013Q1~2015Q3在线视频移动端和PC端有效使用时长份额对比 根据艾瑞网民行为监测系统iUserTracker及mUserTrac

System Center DPM 2016 RTM部署

(一)先决条件 整体的备份架构图没有太大的变化,如图. 支持的备份类型包括: 应用程序感知备份:Microsoft 工作负载的应用程序感知备份,包括 SQL Server.Exchange 和 SharePoint. 文件备份:运行 Windows Server 和 Windows 客户端操作系统的计算机的文件.文件夹和卷的备份. 系统备份:运行 Windows Server 和 Windows 客户端操作系统的物理计算机的备份系统状态或完整裸机备份. Hyper-V 备份:运行 Windows

django_day4

Python实现数据库的增删改 #两种点击按钮向后端传送数据的方式 <a href="/edit/{{ book.id }}/"><button class="btn btn-success">编辑</button></a> <a href="/delete?id={{ book.id }}"><button class="btn btn-danger">

仿网易新闻界面

#import "AppDelegate.h" #import "ViewController.h" @interfaceAppDelegate () @end @implementation AppDelegate - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { self.window = [

每天一个Linux命令(33)cal命令

      cal命令用于显示当前日历,或者指定日期的日历.   (1)用法: 用法: cal [选项]  [[[日] 月] 年] (2)功能:       功能:  用于查看日历等时间信息,如只有一个参数,则表示年份(1-9999),如有两个参数,则表示月份和年份       (3)选项参数:       1) -1  --one 只显示当前月份(默认) 2) -3  --three  显示上个月.当月和下个月 3) -s  --sunday  周日作为一周第一天 4) -m --monday

网站前端_JavaScript.0009.JavaScript日期时间

日期类型: 说明: Js提供了Date类型来处理时间和日期,Date类型内置一些列获取或设置日期时间信息的方法,日期类型初始化参数以时间戳保存 // 创建日期对象, 默认当前时间对象,支持初始化,但必须能够解析 var newDate = new Date() console.log(newDate) var newDate = new Date('8/30/2016') console.log(newDate) var newDate = new Date('August 30, 2016')

主办国

“主办国”英语可以译为:“to host,  to play host”.例如: 1. 北京已成为第一个既主办夏季奥运会,又主办冬季奥运会的城市 Beijing has become the first city ever to host both the summer and Winter Olypic Games. 2. 这座城市以主办国际著名体育赛事的巨大而建立了卓越的声誉. This city has built an excellent reputation for its great

python3之subprocess常见方法使用

一.常见subprocess方法 1.subprocess.getstatusoutput(cmd) 官方解释: Return (exitcode, output) of executing cmd in a shell. Execute the string 'cmd' in a shell with 'check_output' andreturn a 2-tuple (status, output). The locale encoding is usedto decode the out