답안 #19383

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
19383 2016-02-24T11:06:50 Z fredldh Α (kriii4_P1) C++
0 / 100
0 ms 1084 KB
#include<stdio.h>
#define mod(a) ((a)%1000000007)
typedef long long int lld;
lld pow(lld a, lld x) {
    if(!x) return 1;
    lld P = pow(a, x/2);
    if(x&1) return mod(a*mod(P*P));
    return mod(P*P);
}
int main() {
    lld a, x;
    scanf("%lld%lld", &a, &x);
    a = mod(a); x = mod(x);
    printf("%lld\n", pow(a,x));
    return 0;
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 1084 KB Output isn't correct
2 Halted 0 ms 0 KB -