結果

問題 No.184 たのしい排他的論理和(HARD)
ユーザー nebukuro09nebukuro09
提出日時 2016-11-28 17:06:33
言語 D
(dmd 2.106.1)
結果
WA  
実行時間 -
コード長 1,072 bytes
コンパイル時間 1,192 ms
コンパイル使用メモリ 122,748 KB
実行使用メモリ 33,308 KB
最終ジャッジ日時 2024-06-12 05:16:38
合計ジャッジ時間 17,267 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 WA -
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 575 ms
24,064 KB
testcase_09 AC 109 ms
6,768 KB
testcase_10 AC 437 ms
18,752 KB
testcase_11 AC 298 ms
14,248 KB
testcase_12 AC 736 ms
27,612 KB
testcase_13 AC 781 ms
29,648 KB
testcase_14 AC 410 ms
17,932 KB
testcase_15 AC 853 ms
31,840 KB
testcase_16 AC 680 ms
26,924 KB
testcase_17 AC 760 ms
28,968 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 1 ms
5,376 KB
testcase_20 AC 441 ms
31,488 KB
testcase_21 AC 875 ms
33,308 KB
testcase_22 AC 846 ms
33,304 KB
testcase_23 AC 1 ms
5,376 KB
testcase_24 AC 1 ms
5,376 KB
testcase_25 AC 1 ms
5,376 KB
testcase_26 AC 1 ms
5,376 KB
testcase_27 AC 1 ms
5,376 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 857 ms
31,976 KB
testcase_34 AC 816 ms
31,696 KB
testcase_35 AC 853 ms
33,072 KB
testcase_36 AC 837 ms
32,896 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.stdio;
import std.array;
import std.string;
import std.conv;
import std.algorithm;
import std.typecons;
import std.range;
import std.random;
import std.math;
import std.container;
import std.numeric;
import std.bigint;


void main() {
  auto N = readln.chomp.to!int;
  auto A = readln.split.map!(to!long);
  auto M = new int[][](N, 61);
  foreach (i, a; enumerate(A))
    foreach (j; 0..61) 
      M[i][j] = (A[i] >> j) % 2;

  foreach (i; 0..min(61,N)) {
    //M.each!(writeln);
    //writeln;
    if (M[i][i] == 0) {
      auto mi = i;
      auto m = 60;
      foreach (j; i..N)
        foreach (k; i..61) 
          if (M[j][k] == 1) {
            if (k < m) {
              mi = j;
              m = k;
            }
            break;
          }
      swap(M[i], M[mi]);
    }
    if (M[i][i] == 0) continue;

    foreach (j; i+1..N)
      if (M[j][i] == 1)
        foreach (k; i..61) {
          (M[j][k] ^= M[i][k]);
        }
  }

  int i = N - 1;
  long ans = N;
  while (i >= 0 && M[i].sum == 0) {
    i -= 1;
    ans -= 1;
  }
  writeln(2L^^ans);
}
0