#include #pragma GCC optimize("Ofast") #define _GLIBCXX_DEBUG using namespace std; using std::cout; using std::cin; using std::endl; using ll=long long; using ld=long double; ll ILL=1167167167167167167; const int INF=2100000000; const ll mod=998244353; #define rep(i,a) for (ll i=0;i using _pq = priority_queue, greater>; template ll LB(vector &v,T a){return lower_bound(v.begin(),v.end(),a)-v.begin();} template ll UB(vector &v,T a){return upper_bound(v.begin(),v.end(),a)-v.begin();} template bool chmin(T &a,const T &b){if(a>b){a=b;return 1;}else return 0;} template bool chmax(T &a,const T &b){if(a void So(vector &v) {sort(v.begin(),v.end());} template void Sore(vector &v) {sort(v.begin(),v.end(),[](T x,T y){return x>y;});} void yneos(bool a){if(a) cout<<"Yes\n"; else cout<<"No\n";} template void vec_out(vector &p){for(int i=0;i<(int)(p.size());i++){if(i) cout<<" ";cout< struct Doubling_op { int _n; long long Log; std::vector> index_data; std::vector> value_data; Doubling_op(int n,long long limit,std::vector index,std::vector value):_n(n){ Log=2; while(limit){ limit/=2; Log++; } index_data.resize(Log); value_data.resize(Log); index_data[0]=index; value_data[0]=value; for(int i=1;i query(long long times,int start_index,T start_value){ for(int i=0;i>=1; } return std::make_pair(start_index,start_value); } }; struct Doubling { int _n; long long Log; std::vector> index_data; Doubling(int n,long long limit,std::vector index):_n(n){ Log=2; while(limit){ limit/=2; Log++; } index_data.resize(Log); index_data[0]=index; for(int i=1;i>=1; } return start_index; } }; } using po167::Doubling_op; using po167::Doubling; using doubleing_F=long long; doubleing_F d_op(doubleing_F l,doubleing_F r){ return l+r; } void solve(); // oddloop int main() { ios::sync_with_stdio(false); cin.tie(nullptr); int t=1; //cin>>t; rep(i,t) solve(); } void solve(){ ll N,M,L; cin>>N>>M>>L; vector A(N); rep(i,N) cin>>A[i]; vector p(N); rep(i,N) p[i]=(i+L)%N; ll ans=-ILL; Doubling_op table(N,N*M,p,A); rep(i,N){ if(i==L) break; ll V=1+(N*M-1-i)/L; chmax(ans,table.query(V,i,0).second); } if(N<=L){ rep(i,N){ ll x=(L/N)*N+i+N; while(x+i>=L) x-=N; ll V=1+(N*M-1-x)/L; chmax(ans,table.query(V,i,0).second); } } cout<