結果

問題 No.2300 Substring OR Sum
ユーザー 👑 obakyanobakyan
提出日時 2023-05-12 22:10:58
言語 Lua
(LuaJit 2.1.1696795921)
結果
AC  
実行時間 134 ms / 2,000 ms
コード長 465 bytes
コンパイル時間 124 ms
コンパイル使用メモリ 5,376 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-06 12:12:14
合計ジャッジ時間 2,257 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 38 ms
5,376 KB
testcase_04 AC 32 ms
5,376 KB
testcase_05 AC 44 ms
5,376 KB
testcase_06 AC 23 ms
5,376 KB
testcase_07 AC 130 ms
5,376 KB
testcase_08 AC 57 ms
5,376 KB
testcase_09 AC 42 ms
5,376 KB
testcase_10 AC 106 ms
5,376 KB
testcase_11 AC 120 ms
5,376 KB
testcase_12 AC 134 ms
5,376 KB
testcase_13 AC 59 ms
5,376 KB
testcase_14 AC 47 ms
5,376 KB
testcase_15 AC 58 ms
5,376 KB
testcase_16 AC 102 ms
5,376 KB
testcase_17 AC 128 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 1 ms
5,376 KB
testcase_20 AC 1 ms
5,376 KB
testcase_21 AC 1 ms
5,376 KB
testcase_22 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

local mfl, mce = math.floor, math.ceil
local n = io.read("*n")
local a = {}
for i = 1, n do
  a[i] = io.read("*n")
end
local ans = 0LL
local mul = 1LL
local tot = mfl(n * (n + 1) / 2)
for i = 0, 27 do
  local len = 0
  local z = tot
  for j = 1, n do
    if a[j] % 2 == 0 then
      len = len + 1
    else
      len = 0
    end
    a[j] = mfl(a[j] / 2)
    z = z - len
  end
  ans = ans + mul * z
  mul = mul * 2LL
end
ans = tostring(ans):gsub("LL", "")
print(ans)
0