結果

問題 No.184 たのしい排他的論理和(HARD)
ユーザー te-sh
提出日時 2016-09-12 16:16:57
言語 D
(dmd 2.109.1)
結果
WA  
実行時間 -
コード長 655 bytes
コンパイル時間 734 ms
コンパイル使用メモリ 121,228 KB
実行使用メモリ 8,380 KB
最終ジャッジ日時 2024-06-12 04:19:35
合計ジャッジ時間 2,634 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 12 WA * 22
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.algorithm, std.array, std.container, std.range, std.bitmanip;
import std.numeric, std.math, std.bigint, std.random, core.bitop;
import std.string, std.regex, std.conv, std.stdio, std.typecons;

void main()
{
  auto n = readln.chomp.to!size_t;
  auto ai = readln.split.map!(to!long).array;

  size_t i = 0;
  foreach (j; 0..61) {
    if (i >= n) break;
    auto k = ai[i..$].countUntil!(a => (a & (1 << j)) != 0);
    if (k == -1) continue;
    swap(ai[i], ai[k + i]);
    foreach (l; i + 1..min(n, 61)) {
      if ((ai[l] & (1 << j)) != 0)
        ai[l] ^= ai[i];
    }
    i += 1;
  }

  auto r = ai.count!(a => a != 0);
  writeln(2L ^^ r);
}
0