码迷,mamicode.com
首页 > 其他好文 > 详细

终于结束的起点

时间:2018-11-04 14:20:20      阅读:192      评论:0      收藏:0      [点我收藏+]

标签:clu   cstring   ace   div   namespace   class   ios   style   for   

额,本以为暴力过不去,qwq。。竟然过去了。。。

// luogu-judger-enable-o2
#include <cstdio>
#include <iostream>
#include <algorithm>
#include <cstring>
using namespace std;
int n,k,a,b,i;
int main()
{
    cin>>n;
    a=0;
    b=1;
    for(i=1;;i++)
    {
        int c=a+b;
        a=b;
        b=c;
        b%=n;
        if(a==0&&b==1)
            break;
    }
    cout<<i;
}

很简单了,就是暴力。。。

终于结束的起点

标签:clu   cstring   ace   div   namespace   class   ios   style   for   

原文地址:https://www.cnblogs.com/Shen-Yu/p/9903536.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!