結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー Fpga18Gansn1230Fpga18Gansn1230
提出日時 2017-10-05 17:27:50
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 293 ms / 5,000 ms
コード長 486 bytes
コンパイル時間 396 ms
コンパイル使用メモリ 55,284 KB
実行使用メモリ 287,068 KB
最終ジャッジ日時 2024-06-30 03:15:43
合計ジャッジ時間 3,219 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 3 ms
6,940 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 284 ms
287,068 KB
testcase_08 AC 258 ms
194,804 KB
testcase_09 AC 175 ms
144,336 KB
testcase_10 AC 215 ms
166,944 KB
testcase_11 AC 282 ms
208,608 KB
testcase_12 AC 3 ms
6,940 KB
testcase_13 AC 1 ms
6,944 KB
testcase_14 AC 248 ms
90,676 KB
testcase_15 AC 293 ms
214,864 KB
testcase_16 AC 3 ms
6,940 KB
testcase_17 AC 59 ms
73,596 KB
testcase_18 AC 265 ms
251,212 KB
testcase_19 AC 30 ms
37,108 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>

using namespace std;

short int map[5001][0b1000000000000000]={0};

int main(){
  int H;
  int A[5000];
  cin >> H;
  for(int i=0;i<H;i++){
    cin >> A[i];
  }
  map[0][0]=1;
  int count=0;
  for(int i=0;i<H;i++){
    for(int j=0;j<0b1000000000000000;j++){
      if(map[i][j]==1){
        map[i+1][j]=1;
        map[i+1][j^A[i]]=1;
      }
    }
  }
  int counter=0;
  for(int i=0;i<0b1000000000000000;i++){
    counter+=map[H][i];
  }
  cout << counter <<endl;
}
0