結果

問題 No.2071 Shift and OR
ユーザー simansiman
提出日時 2022-09-18 14:02:02
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 399 bytes
コンパイル時間 346 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 26,496 KB
最終ジャッジ日時 2024-06-01 15:31:48
合計ジャッジ時間 7,037 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 94 ms
12,672 KB
testcase_01 AC 94 ms
12,416 KB
testcase_02 AC 94 ms
12,416 KB
testcase_03 AC 100 ms
12,544 KB
testcase_04 WA -
testcase_05 AC 113 ms
12,544 KB
testcase_06 AC 96 ms
12,416 KB
testcase_07 AC 99 ms
12,672 KB
testcase_08 AC 95 ms
12,672 KB
testcase_09 AC 95 ms
12,544 KB
testcase_10 AC 96 ms
12,416 KB
testcase_11 AC 136 ms
12,416 KB
testcase_12 AC 141 ms
12,672 KB
testcase_13 AC 113 ms
12,544 KB
testcase_14 AC 94 ms
12,672 KB
testcase_15 AC 96 ms
12,672 KB
testcase_16 AC 96 ms
12,416 KB
testcase_17 AC 134 ms
12,544 KB
testcase_18 AC 94 ms
12,544 KB
testcase_19 AC 182 ms
12,544 KB
testcase_20 AC 189 ms
12,544 KB
testcase_21 AC 976 ms
12,672 KB
testcase_22 AC 291 ms
12,544 KB
testcase_23 AC 160 ms
24,320 KB
testcase_24 AC 97 ms
13,184 KB
testcase_25 AC 126 ms
17,536 KB
testcase_26 AC 127 ms
18,816 KB
testcase_27 AC 90 ms
12,160 KB
testcase_28 AC 170 ms
26,496 KB
testcase_29 AC 164 ms
25,088 KB
testcase_30 AC 94 ms
12,544 KB
testcase_31 AC 99 ms
12,416 KB
testcase_32 AC 97 ms
12,416 KB
testcase_33 AC 95 ms
12,416 KB
testcase_34 AC 97 ms
12,672 KB
testcase_35 AC 98 ms
12,544 KB
testcase_36 AC 96 ms
12,544 KB
testcase_37 AC 95 ms
12,416 KB
testcase_38 AC 97 ms
12,544 KB
testcase_39 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N = gets.to_i
A = gets.split.map(&:to_i)

def shift(x)
  x / 2 + 2 ** 15 * (x % 2)
end

if N >= 16
  puts 2 ** 16 - 1
  exit
end

L = 2 ** N
dp = Array.new(L, 0)

L.times do |mask|
  N.times do |i|
    next if mask[i] != 0
    nmask = mask | (1 << i)
    a = A[i]

    16.times do |j|
      a = shift(a)
      nv = dp[mask] | a
      dp[nmask] = nv if dp[nmask] < nv
    end
  end
end

pp dp[L - 1]
0