| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 724941 | MercubytheFirst | Rack (eJOI19_rack) | C++14 | 1 ms | 320 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<iostream>
#include<vector>
#include<algorithm>
#include<map>
#include<set>
#include<climits>
#include<numeric>
#include<queue>
#include<unordered_map>
#include<unordered_set>
#include<bitset>
#include<string.h>
#include<cmath>
#include<stack>
#define int uint64_t
using namespace std;
const int mod = 1e9 + 7;
int cdiv(int a, int b){
return (a + b - 1ll) / b;
}
int bpow(int a, int b){
if(a == 1 or b == 0)return 1;
if(a == 0)return 0; // watch out for 0^0
int ans = 1;
a %= mod;
while(b > 0){
if(b&1)ans = ans * a % mod;
a = a * a % mod;
b >>= 1;
}
return ans;
}
int inv(int x){
return bpow(x, mod-2);
}
signed main(){
ios_base::sync_with_stdio(false);cin.tie(NULL);
int n, k;
cin >> n >> k;
int ans = 1,
add = bpow(2, n-1),
kcpy = k,
inv2 = inv(2);
while(k > 1){
if(!(k&1))ans += add;
add = add * inv2 % mod;
k = cdiv(k, 2);
}
cout << ans << endl;
}컴파일 시 표준 에러 (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... | ||||
