比赛 | 2024暑假C班集训D | 评测结果 | WWWWWWWWWW |
---|---|---|---|
题目名称 | 鹰蛋 | 最终得分 | 0 |
用户昵称 | wzh0425 | 运行时间 | 0.048 s |
代码语言 | C++ | 内存使用 | 3.34 MiB |
提交时间 | 2024-07-13 10:05:50 | ||
#include<bits/stdc++.h> using namespace std; int n,m; int main(){ freopen("eagleegg.in","r",stdin); freopen("eagleegg.out","w",stdout); while (1){ cin>>n>>m; if (n==0&&m==0) break; for (int i=n;i>1;i--){ m/=2; } cout<<m+(n-1)<<endl; } return 0; }