結果

問題 No.184 たのしい排他的論理和(HARD)
ユーザー wotsushiwotsushi
提出日時 2016-12-24 17:54:56
言語 Ruby
(3.3.0)
結果
AC  
実行時間 1,956 ms / 5,000 ms
コード長 247 bytes
コンパイル時間 42 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 24,960 KB
最終ジャッジ日時 2024-07-04 12:15:58
合計ジャッジ時間 34,640 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 76 ms
12,288 KB
testcase_01 AC 86 ms
12,288 KB
testcase_02 AC 82 ms
12,160 KB
testcase_03 AC 77 ms
12,288 KB
testcase_04 AC 78 ms
12,160 KB
testcase_05 AC 80 ms
12,032 KB
testcase_06 AC 81 ms
12,160 KB
testcase_07 AC 77 ms
12,160 KB
testcase_08 AC 1,375 ms
20,864 KB
testcase_09 AC 354 ms
13,568 KB
testcase_10 AC 1,113 ms
18,432 KB
testcase_11 AC 812 ms
16,896 KB
testcase_12 AC 1,639 ms
22,144 KB
testcase_13 AC 1,735 ms
23,808 KB
testcase_14 AC 1,043 ms
18,176 KB
testcase_15 AC 1,870 ms
24,448 KB
testcase_16 AC 1,558 ms
22,016 KB
testcase_17 AC 1,689 ms
23,424 KB
testcase_18 AC 82 ms
12,160 KB
testcase_19 AC 79 ms
12,288 KB
testcase_20 AC 146 ms
19,328 KB
testcase_21 AC 1,931 ms
24,960 KB
testcase_22 AC 1,941 ms
24,960 KB
testcase_23 AC 82 ms
12,160 KB
testcase_24 AC 79 ms
12,288 KB
testcase_25 AC 82 ms
12,288 KB
testcase_26 AC 81 ms
12,288 KB
testcase_27 AC 81 ms
12,160 KB
testcase_28 AC 1,194 ms
19,584 KB
testcase_29 AC 1,685 ms
23,168 KB
testcase_30 AC 1,411 ms
21,248 KB
testcase_31 AC 1,217 ms
19,712 KB
testcase_32 AC 1,505 ms
22,144 KB
testcase_33 AC 1,879 ms
24,576 KB
testcase_34 AC 1,956 ms
24,320 KB
testcase_35 AC 1,919 ms
24,704 KB
testcase_36 AC 1,896 ms
24,832 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

include Math

N = gets.to_i
A = gets.split().map(&:to_i)
dp = A.dup
d = 0
while dp.max > 0
  m = dp.max
  dp.each_with_index do |a, i|
    if a > 0 and log2(a).floor == log2(m).floor
      dp[i] ^= m
    end
  end
  d += 1
end
ans = 2**d
puts ans
0