結果

問題 No.2071 Shift and OR
ユーザー keisuke6keisuke6
提出日時 2022-09-16 21:27:36
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
MLE  
実行時間 -
コード長 498 bytes
コンパイル時間 2,256 ms
コンパイル使用メモリ 205,336 KB
実行使用メモリ 814,208 KB
最終ジャッジ日時 2024-06-01 11:57:17
合計ジャッジ時間 4,834 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
6,816 KB
testcase_01 AC 5 ms
6,940 KB
testcase_02 AC 6 ms
7,168 KB
testcase_03 AC 13 ms
8,192 KB
testcase_04 AC 8 ms
7,552 KB
testcase_05 AC 22 ms
9,728 KB
testcase_06 AC 9 ms
7,552 KB
testcase_07 AC 7 ms
7,168 KB
testcase_08 AC 8 ms
7,552 KB
testcase_09 AC 9 ms
7,552 KB
testcase_10 AC 9 ms
7,552 KB
testcase_11 AC 24 ms
10,368 KB
testcase_12 AC 24 ms
10,368 KB
testcase_13 AC 21 ms
9,856 KB
testcase_14 AC 3 ms
6,940 KB
testcase_15 AC 16 ms
8,832 KB
testcase_16 AC 16 ms
8,704 KB
testcase_17 AC 23 ms
10,496 KB
testcase_18 AC 5 ms
6,944 KB
testcase_19 AC 29 ms
10,880 KB
testcase_20 AC 26 ms
11,008 KB
testcase_21 AC 34 ms
12,672 KB
testcase_22 AC 30 ms
11,392 KB
testcase_23 MLE -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define int long long
signed main(){
  int N;
  cin>>N;
  vector<vector<int>> dp(N+1,vector<int>(70000));
  dp[0][0] = 1;
  vector<int> S(N);
  for(int i=0;i<N;i++) cin>>S[i];
  for(int i=0;i<N;i++)for(int j=0;j<69990;j++){
      if(!dp[i][j]) continue;
      for(int k=0;k<16;k++){
          dp[i+1][j|S[i]] = 1;
          S[i] = S[i]/2+(1<<15)*(S[i]%2);
      }
  }
  for(int i=68000;i>=0;i--)if(dp[N][i]){
      cout<<i<<endl;
      return 0;
  }
}
0