提交时间:2021-06-19 19:45:15

运行 ID: 20685

#include<bits/stdc++.h> using namespace std; int k,m; unsigned long long s=0,t[101]; int main(){ scanf("%d%d",&k,&m); t[1]=1; for(int i=2;i<=m;i++) t[i]=t[i-1]*2; for(int i=k;i<=m;i++) s+=t[i]; printf("%d",s); }