結果

問題 No.1742 Binary Indexed Train
ユーザー 👑 obakyanobakyan
提出日時 2022-01-16 20:01:38
言語 Lua
(LuaJit 2.1.1734355927)
結果
TLE  
実行時間 -
コード長 517 bytes
コンパイル時間 310 ms
コンパイル使用メモリ 5,504 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-11-23 12:06:37
合計ジャッジ時間 53,741 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
9,504 KB
testcase_01 AC 2 ms
8,064 KB
testcase_02 AC 2 ms
8,064 KB
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 AC 56 ms
10,624 KB
testcase_07 AC 49 ms
8,192 KB
testcase_08 AC 2,678 ms
10,624 KB
testcase_09 AC 2,683 ms
8,192 KB
testcase_10 AC 2,686 ms
10,624 KB
testcase_11 AC 2,681 ms
5,248 KB
testcase_12 AC 2,680 ms
5,248 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 AC 212 ms
5,248 KB
testcase_16 AC 373 ms
5,248 KB
testcase_17 AC 406 ms
5,248 KB
testcase_18 AC 495 ms
5,248 KB
testcase_19 AC 122 ms
5,248 KB
testcase_20 AC 14 ms
5,248 KB
testcase_21 AC 214 ms
5,248 KB
testcase_22 AC 570 ms
5,248 KB
testcase_23 AC 69 ms
5,248 KB
testcase_24 AC 27 ms
5,248 KB
testcase_25 AC 1,233 ms
5,248 KB
testcase_26 AC 229 ms
5,248 KB
testcase_27 AC 973 ms
5,248 KB
testcase_28 AC 35 ms
5,248 KB
testcase_29 AC 783 ms
5,248 KB
testcase_30 AC 1,624 ms
5,248 KB
testcase_31 TLE -
testcase_32 AC 1,619 ms
5,248 KB
testcase_33 AC 557 ms
5,248 KB
testcase_34 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

local ffi = require("ffi")
local C = ffi.C
ffi.cdef[[
long long atoll(const char*);
]]

local function lltonumber(str)
  return C.atoll(str)
end

local n, q = io.read("*n", "*n", "*l")
for iq = 1, q do
  local s, t = io.read():match("(%d+) (%d+)")
  s = lltonumber(s)
  t = lltonumber(t)
  local z = 0
  while 0LL < t - s do
    local len = t - s
    local jump1 = 1LL
    while s % (2LL * jump1) == 0LL and jump1 * 2LL <= len do
      jump1 = jump1 * 2LL
    end
    z = z + 1
    s = s + jump1
  end
  print(z)
end
0