This commit is contained in:
Zengtudor 2024-10-12 19:48:37 +08:00
parent c8e8f1f0cb
commit 98d01fc2ed

View File

@ -32,7 +32,7 @@ ull cal(const ull a,const ull b)noexcept{
if(b&1)return cal(a,b-1)+1; if(b&1)return cal(a,b-1)+1;
else return cal(a,b/2)+1; else return cal(a,b/2)+1;
} }
throw std::runtime_error("cannot calculate"); _Exit(1);
} }
int main(){ int main(){