2022年2月7日

小q的数列

摘要: #include<cstdio> using namespace std; typedef long long ll; int t; int fun(ll x) { if(x==0) return 0; if(x==1) return 1; return fun(x/2)+x%2; } int ma 阅读全文

posted @ 2022-02-07 10:50 衔白棋子的黑猫 阅读(35) 评论(0) 推荐(0)

导航