# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
464866 | ewirlan | Rack (eJOI19_rack) | C++17 | 0 ms | 204 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
//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;
}
컴파일 시 표준 에러 (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... |