結果

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

ソースコード

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 & (1L << j)) != 0);
    if (k == -1) continue;
    swap(ai[i], ai[k + i]);
    foreach (l; i + 1..n) {
      if ((ai[l] & (1L << j)) != 0)
        ai[l] ^= ai[i];
    }
    i += 1;
  }

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