记录编号 582453 评测结果 AAAAAAAAAA
题目名称 [CSP 2022J]乘方 最终得分 100
用户昵称 Gravatar┭┮﹏┭┮ 是否通过 通过
代码语言 C++ 运行时间 0.000 s
提交时间 2023-09-12 19:45:06 内存使用 0.00 MiB
显示代码纯文本
#include <bits/stdc++.h> 
using namespace std;
long long a,b;
int main(){
    freopen("csp2022pj_pow.in","r",stdin);
    freopen("csp2022pj_pow.out","w",stdout);
    scanf("%lld%lld",&a,&b);
    long long c = 1;
    if(a == 1){
        printf("1\n");
        return 0;
    }
    for(int i = 1;i <= b;i++){
        c *= a;
        if(c > 1e9){
            printf("-1\n");
            return 0;
        }
    }
    printf("%lld\n",c);
    
    return 0;
    
}