比赛 | 暑假综合模拟2 | 评测结果 | WWWWWWWWWWWWWW |
---|---|---|---|
题目名称 | 残酷的数学老师 | 最终得分 | 0 |
用户昵称 | 月映寒霜 | 运行时间 | 0.082 s |
代码语言 | C++ | 内存使用 | 0.18 MiB |
提交时间 | 2018-08-07 20:24:01 | ||
#include<iostream> #include<cstdio> #include<cmath> using namespace std; int poww(int a,int b) { int ans=1,base=a; while(b!=0) { if(b&1!=0) ans*=base; base*=base; b>>=1; } return ans; } int main() { freopen("cruel1.in","r",stdin); freopen("cruel1.out","w",stdout); int ans; int poww(int a,int b); cout<<ans; return 0; }