# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
497595 | infertechno2 | XOR (IZhO12_xor) | C++17 | 176 ms | 608 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
const ll Size=1e5+1;
ll a[Size],ans[Size];
void solve(){
ll n,x;
cin>>n>>x;
for(ll i=0;i<n;i++){
cin>>a[i];
}
for(ll i=0;i<n;i++){
ll so_far=0;
for(ll j=i;j<n;j++){
so_far=so_far^a[j];
if(so_far>=x){
ans[i]=j-i+1;
}
}
}
pair<ll,ll> max_el={0,0};
for(ll i=0;i<n;i++){
max_el=max(max_el,{ans[i],i+1});
}
cout<<max_el.second<<" "<<max_el.first<<endl;
}
int main(){
ios_base::sync_with_stdio(0);
cin.tie(0);
ll t=1;
while(t--){
solve();
}
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |