結果

問題 No.2071 Shift and OR
ユーザー maguroflymagurofly
提出日時 2022-09-16 21:48:13
言語 Ruby
(3.3.0)
結果
TLE  
実行時間 -
コード長 354 bytes
コンパイル時間 188 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 40,960 KB
最終ジャッジ日時 2024-06-01 12:24:10
合計ジャッジ時間 31,556 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 359 ms
19,072 KB
testcase_01 AC 492 ms
13,952 KB
testcase_02 AC 767 ms
15,232 KB
testcase_03 AC 1,086 ms
16,000 KB
testcase_04 AC 926 ms
15,616 KB
testcase_05 AC 1,520 ms
17,664 KB
testcase_06 AC 940 ms
15,616 KB
testcase_07 AC 778 ms
15,104 KB
testcase_08 AC 917 ms
15,616 KB
testcase_09 AC 917 ms
15,616 KB
testcase_10 AC 934 ms
15,488 KB
testcase_11 AC 1,659 ms
18,048 KB
testcase_12 AC 1,661 ms
18,304 KB
testcase_13 AC 1,521 ms
17,792 KB
testcase_14 AC 227 ms
13,056 KB
testcase_15 AC 1,237 ms
16,640 KB
testcase_16 AC 1,228 ms
16,640 KB
testcase_17 AC 1,660 ms
18,048 KB
testcase_18 AC 491 ms
13,952 KB
testcase_19 AC 1,801 ms
18,688 KB
testcase_20 AC 1,806 ms
18,560 KB
testcase_21 TLE -
testcase_22 AC 1,972 ms
19,072 KB
testcase_23 TLE -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

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

dp = [false] * 65536
dp[0] = true

A.each do |n|
    dp2 = [false] * 65536
    16.times do |i|
        (0 ... 65536).each do |m|
            dp2[m | n] |= dp[m]
        end
        n = n >> 1 | (n & 1) << 15
    end
    dp = dp2
end

ans = 0
(0 ... 65536).each do |i|
    ans = i if dp[i]
end

puts ans
0