Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
147352 | C班詹皓杰 | 计算函数值 | C++ | 通过 | 100 | 0 MS | 244 KB | 400 | 2024-05-18 14:46:51 |
#include<iostream> using namespace std; typedef long long lld; lld _pow(lld n,lld x){ lld sum = 1; for(int i = 1; i <= x; i++){ sum *= n; } return sum; } int main(){ lld x,n,sum=0; bool f = true; cin>>x>>n; for(int i = 1; i <= n; i++){ if(f){ sum += _pow(x,i); }else{ sum -= _pow(x,i); } f = (f ? false : true); } cout<<sum<<".00"; return 0; }