#define rep(i,n) for(int i=0;i<(int)(n);i++) #define ALL(v) v.begin(),v.end() typedef long long ll; #include using namespace std; int main(){ ios::sync_with_stdio(false); std::cin.tie(nullptr); ll n,m; cin>>n>>m; vector A(n); rep(i,n) cin>>A[i]; auto f=[&](ll x){ ll res=0; rep(i,n){ if(A[i]>x*m) res+=A[i]-x*m; else if(A[i]1){ ll mid=(ok+ng)/2; if(f(mid)) ok=mid; else ng=mid; } cout<