結果

問題 No.2071 Shift and OR
ユーザー simansiman
提出日時 2022-09-18 18:48:59
言語 Ruby
(3.3.0)
結果
AC  
実行時間 1,997 ms / 2,000 ms
コード長 412 bytes
コンパイル時間 481 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 26,240 KB
最終ジャッジ日時 2024-12-22 01:35:51
合計ジャッジ時間 27,435 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
13,696 KB
testcase_01 AC 122 ms
14,208 KB
testcase_02 AC 163 ms
15,360 KB
testcase_03 AC 625 ms
16,256 KB
testcase_04 AC 315 ms
15,744 KB
testcase_05 AC 1,165 ms
17,920 KB
testcase_06 AC 396 ms
15,872 KB
testcase_07 AC 190 ms
15,232 KB
testcase_08 AC 268 ms
16,000 KB
testcase_09 AC 351 ms
15,872 KB
testcase_10 AC 408 ms
16,000 KB
testcase_11 AC 1,365 ms
18,432 KB
testcase_12 AC 1,376 ms
18,432 KB
testcase_13 AC 1,142 ms
17,920 KB
testcase_14 AC 107 ms
13,184 KB
testcase_15 AC 807 ms
16,768 KB
testcase_16 AC 797 ms
16,896 KB
testcase_17 AC 1,296 ms
18,432 KB
testcase_18 AC 122 ms
14,336 KB
testcase_19 AC 1,687 ms
18,944 KB
testcase_20 AC 1,406 ms
18,944 KB
testcase_21 AC 1,997 ms
20,608 KB
testcase_22 AC 1,768 ms
19,456 KB
testcase_23 AC 166 ms
24,064 KB
testcase_24 AC 102 ms
13,184 KB
testcase_25 AC 127 ms
17,408 KB
testcase_26 AC 133 ms
18,688 KB
testcase_27 AC 92 ms
12,288 KB
testcase_28 AC 176 ms
26,240 KB
testcase_29 AC 172 ms
26,240 KB
testcase_30 AC 712 ms
16,512 KB
testcase_31 AC 338 ms
16,256 KB
testcase_32 AC 347 ms
16,384 KB
testcase_33 AC 397 ms
16,384 KB
testcase_34 AC 471 ms
16,512 KB
testcase_35 AC 519 ms
16,256 KB
testcase_36 AC 658 ms
16,384 KB
testcase_37 AC 439 ms
16,384 KB
testcase_38 AC 392 ms
16,512 KB
testcase_39 AC 354 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