結果

問題 No.1245 ANDORゲーム(calc)
ユーザー 👑 obakyanobakyan
提出日時 2021-08-12 14:55:29
言語 Lua
(LuaJit 2.1.1696795921)
結果
AC  
実行時間 359 ms / 2,000 ms
コード長 1,113 bytes
コンパイル時間 52 ms
コンパイル使用メモリ 5,248 KB
実行使用メモリ 50,036 KB
最終ジャッジ日時 2024-10-01 19:39:11
合計ジャッジ時間 7,045 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 10 ms
5,248 KB
testcase_08 AC 5 ms
5,248 KB
testcase_09 AC 9 ms
5,248 KB
testcase_10 AC 9 ms
5,248 KB
testcase_11 AC 359 ms
49,896 KB
testcase_12 AC 308 ms
49,924 KB
testcase_13 AC 317 ms
49,916 KB
testcase_14 AC 306 ms
49,780 KB
testcase_15 AC 309 ms
49,904 KB
testcase_16 AC 307 ms
49,772 KB
testcase_17 AC 285 ms
49,904 KB
testcase_18 AC 271 ms
49,264 KB
testcase_19 AC 311 ms
49,916 KB
testcase_20 AC 292 ms
49,780 KB
testcase_21 AC 281 ms
49,912 KB
testcase_22 AC 293 ms
50,036 KB
testcase_23 AC 286 ms
47,116 KB
testcase_24 AC 257 ms
40,948 KB
testcase_25 AC 171 ms
37,760 KB
testcase_26 AC 236 ms
49,220 KB
testcase_27 AC 288 ms
49,896 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

local mfl, mce = math.floor, math.ceil
local n, q = io.read("*n", "*n")
local t = {}
for i = 1, 30 do t[i] = {} end
for i = 1, n do
  local a = io.read("*n")
  for j = 1, 30 do
    t[j][i] = a % 2
    a = mfl(a / 2)
  end
end
io.read()
local s = io.read()
local tp = {}
for i = 1, n do
  tp[i] = s:byte(i) == 48
end

local score_0 = {}
local score_1 = {}

for i = 1, 30 do
  local s0, s1 = 0, 0
  local c0, c1 = 0, 1
  for j = 1, n do
    if tp[j] then -- AND
      if t[i][j] == 0 then
        if c0 == 1 then s0 = s0 + 1 end
        if c1 == 1 then s1 = s1 + 1 end
        c0, c1 = 0, 0
      end
    else -- OR
      if t[i][j] == 1 then
        if c0 == 0 then s0 = s0 + 1 end
        if c1 == 0 then s1 = s1 + 1 end
        c0, c1 = 1, 1
      end
    end
  end
  score_0[i], score_1[i] = s0, s1
end

for iq = 1, q do
  local a = io.read("*n")
  local mul = 1
  local ret = 0
  for i = 1, 30 do
    if a % 2 == 1 then
      ret = ret + score_1[i] * mul
    else
      ret = ret + score_0[i] * mul
    end
    a = mfl(a / 2)
    mul = mul * 2
  end
  ret = tostring(ret * 1LL):gsub("LL", "")
  print(ret)
end
0