#include<bits/stdc++.h>
using namespace std;
int main(){
ios_base::sync_with_stdio(false);
cin.tie(0);
int n,a,b;cin>>n>>a>>b;
vector<int>arr(n);
for (int i = 0;i<n;++i){
cin>>arr[i];
}
int vv = 0;
for (int i = 0;i<(1<<n);++i){
int v = 0;
int cnt = 0;
for (int j = 0;j<n;){
int cur = (i & (1<<j));
int k = j;
int ans = 0;
while(k < n && (i & (1<<k)) == cur){
ans+=arr[k];
++k;
}
v|=ans;
cnt++;
j = k;
}
if (cnt >= a && cnt <= b){
vv = max(vv,v);
}
}
cout<<vv<<'\n';
return 0;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
212 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
212 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
212 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
212 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
212 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |