# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1099200 | 2024-10-10T17:50:56 Z | vjudge1 | Rack (eJOI19_rack) | C++17 | 1 ms | 460 KB |
#include <algorithm> #include <iostream> #include <bits/stdc++.h> #include <cmath> #include <vector> using namespace std; const long long mod = 1e9+7; int binary_exponentiation(int number, int exponent) { int result; while (exponent > 0) { if(number & 1) result = result * number; exponent = exponent * exponent; number = number >> 1; } return result; } int make_path(long long seed, int length) { long long path = 0; for (int i = 0; i < length; i++) { if (((seed >> i) & 1) == 1) path = (path + binary_exponentiation(2, length - i - 1))%mod; } return path; } int main() { ios_base::sync_with_stdio(false); cin.tie(NULL); long long int height, node; cin >> height >> node; int rows = 1 << height; std::vector<int> path(height); for (int j = 0; j < height; ++j) { path[j] = ((node - 1) >> j) & 1; } long long int leaf = 1; long long int set = pow(2, height); for (int i : path) { set = set/2; if (i == 1) leaf += set; } cout << leaf%mod << endl; return 0; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 348 KB | Output is correct |
2 | Correct | 0 ms | 460 KB | Output is correct |
3 | Correct | 0 ms | 456 KB | Output is correct |
4 | Correct | 0 ms | 348 KB | Output is correct |
5 | Correct | 0 ms | 348 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 348 KB | Output is correct |
2 | Correct | 0 ms | 460 KB | Output is correct |
3 | Correct | 0 ms | 456 KB | Output is correct |
4 | Correct | 0 ms | 348 KB | Output is correct |
5 | Correct | 0 ms | 348 KB | Output is correct |
6 | Correct | 1 ms | 348 KB | Output is correct |
7 | Correct | 0 ms | 348 KB | Output is correct |
8 | Correct | 0 ms | 348 KB | Output is correct |
9 | Correct | 0 ms | 348 KB | Output is correct |
10 | Correct | 0 ms | 348 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 348 KB | Output is correct |
2 | Correct | 0 ms | 460 KB | Output is correct |
3 | Correct | 0 ms | 456 KB | Output is correct |
4 | Correct | 0 ms | 348 KB | Output is correct |
5 | Correct | 0 ms | 348 KB | Output is correct |
6 | Correct | 1 ms | 348 KB | Output is correct |
7 | Correct | 0 ms | 348 KB | Output is correct |
8 | Correct | 0 ms | 348 KB | Output is correct |
9 | Correct | 0 ms | 348 KB | Output is correct |
10 | Correct | 0 ms | 348 KB | Output is correct |
11 | Correct | 1 ms | 344 KB | Output is correct |
12 | Incorrect | 0 ms | 348 KB | Output isn't correct |
13 | Halted | 0 ms | 0 KB | - |