結果

問題 No.2071 Shift and OR
ユーザー simansiman
提出日時 2022-09-18 18:48:59
言語 Ruby
(3.3.0)
結果
AC  
実行時間 1,935 ms / 2,000 ms
コード長 412 bytes
コンパイル時間 202 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 26,368 KB
最終ジャッジ日時 2024-06-01 15:41:11
合計ジャッジ時間 24,744 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
13,952 KB
testcase_01 AC 115 ms
14,592 KB
testcase_02 AC 156 ms
15,488 KB
testcase_03 AC 600 ms
16,512 KB
testcase_04 AC 300 ms
16,000 KB
testcase_05 AC 1,143 ms
17,920 KB
testcase_06 AC 390 ms
16,128 KB
testcase_07 AC 187 ms
15,488 KB
testcase_08 AC 258 ms
16,000 KB
testcase_09 AC 339 ms
16,000 KB
testcase_10 AC 400 ms
16,000 KB
testcase_11 AC 1,295 ms
18,688 KB
testcase_12 AC 1,334 ms
18,432 KB
testcase_13 AC 1,076 ms
18,048 KB
testcase_14 AC 102 ms
13,440 KB
testcase_15 AC 792 ms
17,024 KB
testcase_16 AC 775 ms
16,896 KB
testcase_17 AC 1,268 ms
18,560 KB
testcase_18 AC 110 ms
14,336 KB
testcase_19 AC 1,661 ms
19,072 KB
testcase_20 AC 1,380 ms
19,072 KB
testcase_21 AC 1,935 ms
20,608 KB
testcase_22 AC 1,721 ms
19,456 KB
testcase_23 AC 159 ms
24,064 KB
testcase_24 AC 97 ms
13,056 KB
testcase_25 AC 122 ms
17,408 KB
testcase_26 AC 123 ms
18,688 KB
testcase_27 AC 86 ms
12,288 KB
testcase_28 AC 161 ms
24,960 KB
testcase_29 AC 165 ms
26,368 KB
testcase_30 AC 677 ms
16,384 KB
testcase_31 AC 306 ms
16,384 KB
testcase_32 AC 333 ms
16,512 KB
testcase_33 AC 379 ms
16,512 KB
testcase_34 AC 456 ms
16,384 KB
testcase_35 AC 503 ms
16,384 KB
testcase_36 AC 641 ms
16,640 KB
testcase_37 AC 423 ms
16,384 KB
testcase_38 AC 378 ms
16,384 KB
testcase_39 AC 337 ms
16,384 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
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 ** 16 
dp = Array.new(N + 1) { Array.new(L, false) }
dp[0][0] = true

1.upto(N) do |i|
  L.times do |j|
    next if not dp[i - 1][j]
    a = A[i - 1]

    16.times do
      nv = j | a
      dp[i][nv] |= dp[i - 1][j]
      a = shift(a)
    end
  end
end

pp dp[N].rindex(true)
0