結果

問題 No.1791 Repeat Multiplication
ユーザー 👑 obakyanobakyan
提出日時 2022-10-01 13:48:59
言語 Lua
(LuaJit 2.1.1696795921)
結果
AC  
実行時間 219 ms / 3,000 ms
コード長 374 bytes
コンパイル時間 242 ms
コンパイル使用メモリ 6,944 KB
実行使用メモリ 35,456 KB
最終ジャッジ日時 2024-06-06 06:23:52
合計ジャッジ時間 7,121 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 39 ms
5,376 KB
testcase_09 AC 33 ms
5,376 KB
testcase_10 AC 33 ms
5,376 KB
testcase_11 AC 29 ms
5,376 KB
testcase_12 AC 18 ms
5,376 KB
testcase_13 AC 187 ms
35,428 KB
testcase_14 AC 190 ms
35,328 KB
testcase_15 AC 122 ms
18,944 KB
testcase_16 AC 123 ms
18,872 KB
testcase_17 AC 206 ms
35,348 KB
testcase_18 AC 149 ms
35,456 KB
testcase_19 AC 184 ms
35,440 KB
testcase_20 AC 148 ms
35,456 KB
testcase_21 AC 199 ms
35,428 KB
testcase_22 AC 219 ms
35,456 KB
testcase_23 AC 149 ms
35,328 KB
testcase_24 AC 184 ms
35,328 KB
testcase_25 AC 183 ms
35,384 KB
testcase_26 AC 207 ms
35,456 KB
testcase_27 AC 148 ms
35,396 KB
testcase_28 AC 203 ms
35,268 KB
testcase_29 AC 207 ms
35,328 KB
testcase_30 AC 189 ms
35,416 KB
testcase_31 AC 1 ms
5,376 KB
testcase_32 AC 207 ms
35,456 KB
testcase_33 AC 201 ms
35,432 KB
testcase_34 AC 214 ms
35,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

local mfl, mce = math.floor, math.ceil
local n, q = io.read("*n", "*n")
local t = {1}
for i = 2, n do
  t[i] = 0
end
for i = 1, n do
  local lim = mfl(n / i)
  for j = 2, lim do
    t[i * j] = t[i * j] + t[i]
  end
end
local sum = {t[1]}
for i = 2, n do
  sum[i] = sum[i - 1] + t[i]
end

for iq = 1, q do
  local x = io.read("*n")
  print(t[x] * sum[math.floor(n / x)])
end
0