| # | Time | Username | Problem | Language | Result | Execution time | Memory | 
|---|---|---|---|---|---|---|---|
| 464866 | ewirlan | Rack (eJOI19_rack) | C++17 | 0 ms | 204 KiB | 
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
//RACK
#define _CTR_SECURE_NO_WARNINGS
#include <iostream>
#include <vector>
typedef long long int ll;
template <typename T> T in()
{
    T x;
    std::cin >> x;
    return x;
}
constexpr int maxn = 1e6 + 3;
constexpr int mod = 1e9 + 7;
ll pow2[maxn]{ 1 };
std::vector <ll> wek{ 1 };
int main()
{
    std::cin.tie(nullptr); std::cout.tie(nullptr); std::ios_base::sync_with_stdio(0);
    int n(in<int>()), k(in<int>());
    for (int i(1); i < n; ++i)pow2[i] = (pow2[i - 1] * 2) % mod;
    int j(n);
    while (wek.size() < k)
    {
        --j;
        for (auto i : wek)wek.push_back((i + pow2[j]) % mod);
    }
    std::cout << wek[k - 1] << '\n';
    return 0;
}
Compilation message (stderr)
| # | Verdict | Execution time | Memory | Grader output | 
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output | 
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output | 
|---|---|---|---|---|
| Fetching results... | ||||
