結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー 👑 CleyLCleyL
提出日時 2022-04-14 09:43:34
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 114 ms / 5,000 ms
コード長 443 bytes
コンパイル時間 594 ms
コンパイル使用メモリ 74,372 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-06 13:45:13
合計ジャッジ時間 1,662 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 114 ms
5,376 KB
testcase_08 AC 65 ms
5,376 KB
testcase_09 AC 43 ms
5,376 KB
testcase_10 AC 51 ms
5,376 KB
testcase_11 AC 66 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 1 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 68 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 17 ms
5,376 KB
testcase_18 AC 89 ms
5,376 KB
testcase_19 AC 9 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
using namespace std;
int dp[33000];
int main(){
  int n;cin>>n;
  vector<int> A(n);
  for(int i = 0; n > i; i++){
    cin>>A[i];
  }
  dp[0] = 1;
  int mx = 0;
  for(int i = 0; n > i; i++){
    for(int j = 0; mx >= j; j++){
      if(!dp[j])continue;
      dp[j^A[i]] = 1;
      mx = max(mx,j^A[i]);
    }
  }
  int ans = 0;
  for(int i = 0; mx >= i; i++){
    ans += dp[i];
  }
  cout << ans << endl;
  
}
0