結果

問題 No.616 へんなソート
ユーザー 👑 obakyanobakyan
提出日時 2021-06-10 22:11:09
言語 Lua
(LuaJit 2.1.1696795921)
結果
TLE  
実行時間 -
コード長 559 bytes
コンパイル時間 184 ms
コンパイル使用メモリ 6,816 KB
実行使用メモリ 14,020 KB
最終ジャッジ日時 2024-05-07 15:29:15
合計ジャッジ時間 6,733 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
13,884 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 1 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 1 ms
6,944 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 4 ms
6,944 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 12 ms
6,940 KB
testcase_13 AC 1,422 ms
6,940 KB
testcase_14 AC 9 ms
6,940 KB
testcase_15 AC 1 ms
6,944 KB
testcase_16 AC 3 ms
6,944 KB
testcase_17 AC 649 ms
6,944 KB
testcase_18 AC 58 ms
6,944 KB
testcase_19 AC 70 ms
6,940 KB
testcase_20 AC 2 ms
6,940 KB
testcase_21 AC 2 ms
6,940 KB
testcase_22 AC 16 ms
6,940 KB
testcase_23 AC 1 ms
6,940 KB
testcase_24 AC 1 ms
6,944 KB
testcase_25 AC 1 ms
6,944 KB
testcase_26 AC 2 ms
6,940 KB
testcase_27 AC 2 ms
6,940 KB
testcase_28 TLE -
testcase_29 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

local mod = 1000000007
local function badd(a, b) return (a + b) % mod end
local n, k = io.read("*n", "*n", "*l")
io.read()
local dp1, dp2 = {}, {}
for i = 1, k + 1 do
  dp1[i] = 0
end
dp1[1] = 1
for i = 1, n do
  local src = i % 2 == 1 and dp1 or dp2
  local dst = i % 2 == 1 and dp2 or dp1
  for j = 1, k + 1 do
    dst[j] = 0
  end
  for j = 0, i - 1 do
    for z = 1, k + 1 - j do
      dst[z + j] = badd(dst[z + j], src[z])
    end
  end
end
local tbl = n % 2 == 1 and dp2 or dp1
local ret = 0
for i = 1, k + 1 do
  ret = badd(ret, tbl[i])
end
print(ret)
0