比赛 CSP2022普及组 评测结果 AAAAAATAAA
题目名称 乘方 最终得分 90
用户昵称 张皓荀 运行时间 1.000 s
代码语言 C++ 内存使用 0.57 MiB
提交时间 2022-10-29 16:28:55
显示代码纯文本
  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. int main(){
  4. freopen("csp2022pj_pow.in","r",stdin);
  5. freopen("csp2022pj_pow.out","w",stdout);
  6. int a,b;
  7. long long ans;
  8. cin>>a>>b;
  9. ans=1;
  10. if(b>=30&&a!=1){
  11. cout<<"-1";
  12. return 0;
  13. }
  14. for(int i=1;i<=b;i++){
  15. ans*=a;
  16. if(ans>1000000000){
  17. cout<<"-1";
  18. return 0;
  19. }
  20. }
  21. cout<<ans;
  22. }