結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー Fpga18Gansn1230Fpga18Gansn1230
提出日時 2017-10-05 17:18:33
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 447 bytes
コンパイル時間 776 ms
コンパイル使用メモリ 55,812 KB
実行使用メモリ 163,456 KB
最終ジャッジ日時 2024-11-16 21:13:27
合計ジャッジ時間 2,595 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 1 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 WA -
testcase_08 AC 187 ms
145,664 KB
testcase_09 AC 129 ms
100,736 KB
testcase_10 AC 154 ms
120,832 KB
testcase_11 AC 200 ms
157,824 KB
testcase_12 WA -
testcase_13 AC 2 ms
5,248 KB
testcase_14 AC 132 ms
23,296 KB
testcase_15 AC 209 ms
163,456 KB
testcase_16 AC 2 ms
5,248 KB
testcase_17 AC 49 ms
38,656 KB
testcase_18 WA -
testcase_19 AC 24 ms
20,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>

using namespace std;

short int map[5001][16386]={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<16386;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<16386;i++){
    counter+=map[H][i];
  }
  cout << counter <<endl;
}
0