답안 #791452

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
791452 2023-07-24T06:39:53 Z peteza Star Trek (CEOI20_startrek) C++14
0 / 100
1 ms 212 KB
#include <bits/stdc++.h>
using namespace std;
long long mod = 1e9+7;

int n;
long long d;
long long custompow(long long x, long long y) {
  long long res = 1;
  for(;y;y>>=1,x=x*x%mod) if(y&1) res = res*x%mod;
  return res;
}

int main() {
  cin >> n >> d;
  cout << custompow(2, d);
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 212 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 212 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 212 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 212 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 212 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 212 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 212 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 212 KB Output isn't correct
2 Halted 0 ms 0 KB -