이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
//#define int long long
#define INF (int)1e18
#define f first
#define s second
 
mt19937_64 RNG(chrono::steady_clock::now().time_since_epoch().count());
 
int n, a, b;
const int N = 2005;
int aa[N]; 
long long p[N];
bitset <N> bs[N];
 
bool check(long long x){
    bs[0].set(0);
    
    for (int i = 1; i <= n; i++){
        bs[i] &= 0;
        for (int j = 0; j < i; j++){
            long long val = p[i] - p[j];
            if ((val | x) == x) {
                bs[i] |= bs[j] << 1;
            }
        }
    }
    
    for (int i = a; i <= b; i++){
        if (bs[n].test(i)) return true;
    }
    return false;
}
 
void Solve() 
{
    cin >> n >> a >> b;
    
    for (int i = 1; i <= n; i++) cin >> aa[i], p[i] = p[i - 1] + aa[i];
    
    long long ans = (1LL << 41) - 1;
    for (int i = 40; i >= 0; i--){
        if (check(ans - (1LL << i))) ans -= 1LL << i;
    }
    
    cout << ans << "\n";
}
 
int32_t main() 
{
    auto begin = std::chrono::high_resolution_clock::now();
    ios_base::sync_with_stdio(0);
    cin.tie(0);
    int t = 1;
//    cin >> t;
    for(int i = 1; i <= t; i++) 
    {
        //cout << "Case #" << i << ": ";
        Solve();
    }
    auto end = std::chrono::high_resolution_clock::now();
    auto elapsed = std::chrono::duration_cast<std::chrono::nanoseconds>(end - begin);
    cerr << "Time measured: " << elapsed.count() * 1e-9 << " seconds.\n"; 
    return 0;
}
| # | Verdict  | Execution time | Memory | Grader output | 
|---|
| Fetching results... | 
| # | Verdict  | Execution time | Memory | Grader output | 
|---|
| Fetching results... | 
| # | Verdict  | Execution time | Memory | Grader output | 
|---|
| Fetching results... | 
| # | Verdict  | Execution time | Memory | Grader output | 
|---|
| Fetching results... | 
| # | Verdict  | Execution time | Memory | Grader output | 
|---|
| Fetching results... |