记录编号 |
593398 |
评测结果 |
AAAAAAAAAA |
题目名称 |
加法问题 |
最终得分 |
100 |
用户昵称 |
chenbp |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.030 s |
提交时间 |
2024-08-31 10:20:56 |
内存使用 |
3.33 MiB |
显示代码纯文本
#include <iostream>
#include <cstdio>
using namespace std;
int a[5],tree[20];
void build(int k,int l,int r){
if(l==r){
tree[k]=a[l];
return ;
}
int mid=(l+r)/2;
build(k*2,l,mid);
build(k*2+1,mid+1,r);
tree[k]=tree[k*2]+tree[k*2+1];
}
int main(){
freopen("aplusb.in","r",stdin);
freopen("aplusb.out","w",stdout);
cin>>a[1]>>a[2];
build(1,1,2);
cout<<tree[1];
return 0;
}