結果

問題 No.1443 Andd
ユーザー 👑 obakyanobakyan
提出日時 2021-07-24 16:16:59
言語 Lua
(LuaJit 2.1.1696795921)
結果
TLE  
実行時間 -
コード長 732 bytes
コンパイル時間 209 ms
コンパイル使用メモリ 5,248 KB
実行使用メモリ 139,392 KB
最終ジャッジ日時 2024-07-19 22:11:00
合計ジャッジ時間 17,034 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,624 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 662 ms
19,072 KB
testcase_04 AC 1,666 ms
18,944 KB
testcase_05 AC 746 ms
19,072 KB
testcase_06 AC 566 ms
19,072 KB
testcase_07 AC 1,543 ms
19,072 KB
testcase_08 AC 1,213 ms
19,072 KB
testcase_09 AC 24 ms
5,376 KB
testcase_10 TLE -
testcase_11 AC 1,870 ms
19,072 KB
testcase_12 AC 1,760 ms
19,072 KB
testcase_13 TLE -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

local band = bit.band
local n = io.read("*n")
local a = {}
for i = 1, n do
  a[i] = io.read("*n")
end
local dp1, dp2 = {}, {}
local lim = n * 1023
for i = 1, lim do
  dp1[i] = false
end
for i = 1, n do
  local src = i % 2 == 1 and dp1 or dp2
  local dst = i % 2 == 1 and dp2 or dp1
  for j = 1, lim do
    dst[j] = false
  end
  local cnt = 1
  local ai = a[i]
  for j = 1, lim do
    if src[j] then
      if 0 < j + ai and not dst[j + ai] then
        cnt = cnt + 1
        dst[j + ai] = true
      end
      local bb = band(j, ai)
      if 0 < bb and not dst[bb] then
        cnt = cnt + 1
        dst[bb] = true
      end
    end
  end
  if 0 < ai and not dst[ai] then
    cnt = cnt + 1
    dst[ai] = true
  end
  print(cnt)
end
0