제출 #19530

#제출 시각아이디문제언어결과실행 시간메모리
19530jihoonΑ (kriii4_P1)C++98
컴파일 에러
0 ms0 KiB
#include<cstdio>
long long a,x,ans,gop;
int main(){
  
  scanf("%lld\n%lld",&a,&x);
  gop=x; ans=1;
  while(x){
    if(x&1){ans*=gop;ans%=je;}
    x >>= 1;gop*=gop;gop%=je;
  }
  printf("%lld",ans);
}

컴파일 시 표준 에러 (stderr) 메시지

P1.cpp: In function ‘int main()’:
P1.cpp:8:27: error: ‘je’ was not declared in this scope
     if(x&1){ans*=gop;ans%=je;}
                           ^
P1.cpp:9:27: error: ‘je’ was not declared in this scope
     x >>= 1;gop*=gop;gop%=je;
                           ^
P1.cpp:5:28: warning: ignoring return value of ‘int scanf(const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result]
   scanf("%lld\n%lld",&a,&x);
                            ^