Codeforces Round #350 (Div. 2) B. Game of Robots __ interesting

ProLightsfx 2016-7-9 154 7/9
B. Game of Robots interesting

Source

http://codeforces.com/contest/670/problem/B

My Solution

这个思维题, 不用构造或模拟哦, 直接-=i就可以的^_^
#include 
#include 
#include 
#include 
using namespace std;
const int maxn = 100000 + 8;
int val[maxn];


int main()
{
    int n, k;
    string line;
    bool get = false;
    scanf("%d%d", &n, &k);
    for(int i = 1; i <= n; i++){ scanf("%d", &val[i]); if(!get){ if(k > i) k -= i;
            else{
                printf("%d", val[k]);
                get = true;
            }
        }

    }

    return 0;
}

 


非特殊说明,本博所有文章均为博主原创,未经许可不得转载。

https://www.prolightsfxjh.com/

Thank you!

                                                                                                                                             ------from ProLightsfx

- THE END -

ProLightsfx

11月15日21:30

最后修改:2024年11月15日
0

非特殊说明,本博所有文章均为博主原创,未经许可不得转载。

共有 0 条评论