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

【Codeforces Round #459 (Div. 2) A】Eleven

时间:2018-01-30 16:50:00      阅读:118      评论:0      收藏:0      [点我收藏+]

标签:black   cpp   std   sync   body   输入   http   ble   end   

【链接】 我是链接,点我呀:)
【题意】


在这里输入题意

【题解】


这个数列增长很快的。
直接暴力模拟看看是不是它的一项就好了

【代码】

#include <bits/stdc++.h>
using namespace std;

int n;

bool ff(int x){
    if (x==1) return true;
    int a = 1,b = 1,c=a+b;
    while (c<=x){
        if (c==x){
            return 1;
        }
        a = b,b = c;
        c = a+b;
    }
    return 0;
}

int main(){
    #ifdef LOCAL_DEFINE
        freopen("rush_in.txt", "r", stdin);
    #endif
    ios::sync_with_stdio(0),cin.tie(0);
    cin >> n;
    for (int i = 1;i <= n;i++)
        if (ff(i))
            cout<<"O";
        else

            cout<<"o";
    return 0;
}

【Codeforces Round #459 (Div. 2) A】Eleven

标签:black   cpp   std   sync   body   输入   http   ble   end   

原文地址:https://www.cnblogs.com/AWCXV/p/8384129.html

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