Submission #675720

# Submission time Handle Problem Language Result Execution time Memory
675720 2022-12-27T18:55:31 Z Alma Rack (eJOI19_rack) C++17
0 / 100
1000 ms 212 KB
#include <bits/stdc++.h>
using namespace std;

using ll = long long;
ll MOD = 1e9+7;

ll calcMODpow(int b, int p) {
    if (p == 0) return 1;
    ll x = calcMODpow(b, p/2);
    if (p % 2 == 1) {
        return (((x*x) % MOD)*b) % MOD;
    } else {
        return (x*x) % MOD;
    }
}

int main() {
    ios::sync_with_stdio(false);
    cin.tie(NULL);

    ll n, k;
    cin >> n >> k;
    ll pos = 1, add = n;
    bool inv = false;

    int i = 0;
    while (i < n) {
        if ((1 << i) > k) {
            break;
        }
        add--;
        if (inv == false) {
            if ((k & (1 << i))) {
                inv = true;
            } else {
                pos += calcMODpow(2, add);
                pos %= MOD;
            }
        } else {
            if ((k & (1 << i))) {
                pos += calcMODpow(2, add);
                pos %= MOD;
            } else {
                inv = true;
            }
        }
        i++;
    }
    while (i < n) {
        add--;
        if (inv) {
            pos += calcMODpow(2, add);
            pos %= MOD;
        }
    }

    cout << pos << '\n';

    return 0;
}
# Verdict Execution time Memory Grader output
1 Execution timed out 1096 ms 212 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Execution timed out 1096 ms 212 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Execution timed out 1096 ms 212 KB Time limit exceeded
2 Halted 0 ms 0 KB -