update
This commit is contained in:
parent
c8e8f1f0cb
commit
98d01fc2ed
@ -32,7 +32,7 @@ ull cal(const ull a,const ull b)noexcept{
|
||||
if(b&1)return cal(a,b-1)+1;
|
||||
else return cal(a,b/2)+1;
|
||||
}
|
||||
throw std::runtime_error("cannot calculate");
|
||||
_Exit(1);
|
||||
}
|
||||
|
||||
int main(){
|
||||
|
Loading…
Reference in New Issue
Block a user