Codeforces Round #459 (Div. 2) AEleven

Posted Visitor

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Codeforces Round #459 (Div. 2) AEleven相关的知识,希望对你有一定的参考价值。

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


在这里输入题意

【题解】


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

【代码】

#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) AEleven的主要内容,如果未能解决你的问题,请参考以下文章

Codeforces Round #459 (Div. 2)

Codeforces Round #459 (Div. 2) AEleven

Codeforces Round #459 (Div. 2) DMADMAX

Codeforces Round #459 (Div. 2) B Radio Station

Codeforces Round #459 (Div. 2)The Monster[匹配问题]

Codeforces Round #459 (Div. 2) C 思维,贪心 D 记忆化dp