結果

問題 No.1201 お菓子配り-4
ユーザー 👑 obakyanobakyan
提出日時 2021-07-29 22:08:51
言語 Lua
(LuaJit 2.1.1696795921)
結果
TLE  
実行時間 -
コード長 1,053 bytes
コンパイル時間 119 ms
コンパイル使用メモリ 5,156 KB
実行使用メモリ 4,376 KB
最終ジャッジ日時 2023-10-12 20:12:10
合計ジャッジ時間 52,074 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 156 ms
4,356 KB
testcase_01 AC 2,118 ms
4,352 KB
testcase_02 AC 3,043 ms
4,352 KB
testcase_03 AC 1,479 ms
4,352 KB
testcase_04 AC 718 ms
4,356 KB
testcase_05 AC 1,790 ms
4,352 KB
testcase_06 AC 271 ms
4,352 KB
testcase_07 AC 669 ms
4,348 KB
testcase_08 AC 2,258 ms
4,356 KB
testcase_09 AC 1,661 ms
4,352 KB
testcase_10 AC 13 ms
4,348 KB
testcase_11 AC 430 ms
4,352 KB
testcase_12 AC 3,474 ms
4,376 KB
testcase_13 AC 95 ms
4,352 KB
testcase_14 AC 47 ms
4,352 KB
testcase_15 AC 2,727 ms
4,352 KB
testcase_16 AC 828 ms
4,348 KB
testcase_17 AC 1,065 ms
4,352 KB
testcase_18 AC 171 ms
4,348 KB
testcase_19 AC 134 ms
4,348 KB
testcase_20 AC 2 ms
4,352 KB
testcase_21 AC 1 ms
4,348 KB
testcase_22 AC 1 ms
4,352 KB
testcase_23 AC 1 ms
4,348 KB
testcase_24 AC 1 ms
4,352 KB
testcase_25 AC 1 ms
4,348 KB
testcase_26 AC 2 ms
4,372 KB
testcase_27 AC 1 ms
4,348 KB
testcase_28 AC 1 ms
4,352 KB
testcase_29 AC 1 ms
4,352 KB
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

local mfl, mce = math.floor, math.ceil
local mod = 1000000007
local half = 500000004
local function bmul(x, y)
  local x1, y1 = mfl(x / 31623), mfl(y / 31623)
  local x0, y0 = x - x1 * 31623, y - y1 * 31623
  return (x1 * y1 * 14122 + (x1 * y0 + x0 * y1) * 31623 + x0 * y0) % mod
end
local function badd(x, y) return (x + y) % mod end
local ret = 0
local function floorSum(n_m, m, a, b)
  while true do
    local n = n_m + m
    if m <= a then
      local v = mfl(a / m)
      ret = badd(ret, bmul(v, bmul(n, bmul(n - 1, half))))
      a = a % m
    end
    if m <= b then
      ret = badd(ret, bmul(n, mfl(b / m)))
      b = b % m
    end
    if a == 0 then break end
    n_m, m, a, b = mfl((a * n_m + b) / m), a, m, (a * n_m + b) % m
  end
end

local n, m = io.read("*n", "*n")
local a, b = {}, {}
for i = 1, n do
  a[i] = io.read("*n")
end
for i = 1, m do
  b[i] = io.read("*n")
end
for i = 1, n do
  for j = 1, m do
    floorSum(1, b[j], a[i], 0)
  end
end
ret = (ret + ret) % mod
ret = tostring(ret):gsub("LL", "")
print(ret)

-- print(os.clock())
0