diff --git a/src/P8093/P8093.cpp b/src/P8093/P8093.cpp index 37ded02..ef2f534 100755 --- a/src/P8093/P8093.cpp +++ b/src/P8093/P8093.cpp @@ -1,5 +1,6 @@ #include #include +#include using ull = unsigned long long; @@ -24,12 +25,11 @@ ull cal(ull a,ull b){ if(a&1)return cal(a+1,b)+1; else return cal(a/2,b)+1; }else if(a>b/2){ - if(a*2-b