結果

問題 No.1201 お菓子配り-4
ユーザー 👑 obakyanobakyan
提出日時 2021-07-28 13:07:04
言語 Lua
(LuaJit 2.1.1696795921)
結果
TLE  
実行時間 -
コード長 813 bytes
コンパイル時間 131 ms
コンパイル使用メモリ 6,688 KB
実行使用メモリ 13,888 KB
最終ジャッジ日時 2024-09-13 09:16:58
合計ジャッジ時間 31,338 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 256 ms
6,812 KB
testcase_01 AC 3,434 ms
6,812 KB
testcase_02 TLE -
testcase_03 AC 2,401 ms
6,940 KB
testcase_04 AC 1,169 ms
6,944 KB
testcase_05 AC 2,927 ms
6,944 KB
testcase_06 AC 442 ms
6,940 KB
testcase_07 AC 2,504 ms
6,940 KB
testcase_08 AC 3,696 ms
6,940 KB
testcase_09 AC 2,714 ms
6,940 KB
testcase_10 AC 22 ms
6,944 KB
testcase_11 AC 697 ms
6,944 KB
testcase_12 TLE -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

local function floorSum(n, m, a, b)
  local ans = 0LL
  while true do
    if m <= a then
      local v = a / m
      ans = ans + v * n * (n - 1LL) / 2LL
      a = a % m
    end
    if m <= b then
      ans = ans + (b / m) * n
      b = b % m
    end
    if a == 0LL then break end
    local y = (a * n + b) / m
    local z = (a * n + b) % m
    n, m, a, b = y, a, m, z
  end
  return ans
end

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

-- print(os.clock())
0