結果

問題 No.827 総神童数
ユーザー 👑 obakyanobakyan
提出日時 2020-05-04 21:05:59
言語 Lua
(LuaJit 2.1.1696795921)
結果
AC  
実行時間 341 ms / 2,000 ms
コード長 920 bytes
コンパイル時間 57 ms
コンパイル使用メモリ 6,684 KB
実行使用メモリ 38,144 KB
最終ジャッジ日時 2024-06-24 23:32:02
合計ジャッジ時間 6,908 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 1 ms
6,944 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 1 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 1 ms
6,944 KB
testcase_09 AC 281 ms
35,456 KB
testcase_10 AC 85 ms
15,488 KB
testcase_11 AC 5 ms
6,940 KB
testcase_12 AC 32 ms
7,552 KB
testcase_13 AC 206 ms
30,592 KB
testcase_14 AC 7 ms
6,944 KB
testcase_15 AC 70 ms
12,544 KB
testcase_16 AC 223 ms
30,848 KB
testcase_17 AC 263 ms
34,304 KB
testcase_18 AC 97 ms
17,152 KB
testcase_19 AC 341 ms
38,144 KB
testcase_20 AC 241 ms
30,976 KB
testcase_21 AC 157 ms
21,504 KB
testcase_22 AC 261 ms
32,768 KB
testcase_23 AC 3 ms
6,940 KB
testcase_24 AC 286 ms
35,072 KB
testcase_25 AC 210 ms
29,312 KB
testcase_26 AC 296 ms
35,200 KB
testcase_27 AC 178 ms
23,040 KB
testcase_28 AC 171 ms
22,912 KB
testcase_29 AC 134 ms
19,712 KB
testcase_30 AC 34 ms
7,680 KB
testcase_31 AC 99 ms
16,896 KB
testcase_32 AC 98 ms
16,512 KB
testcase_33 AC 338 ms
37,376 KB
testcase_34 AC 309 ms
35,200 KB
testcase_35 AC 100 ms
17,024 KB
testcase_36 AC 153 ms
21,248 KB
testcase_37 AC 202 ms
25,216 KB
testcase_38 AC 328 ms
36,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

local mod = 1000000007
local mfl = math.floor

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 n = io.read("*n")
local edge = {}
local len = {}
for i = 1, n do
  edge[i] = {}
  len[i] = -1
end
for i = 1, n - 1 do
  local u, v = io.read("*n", "*n")
  edge[u][v], edge[v][u] = true, true
end
len[1] = 0
local tasks = {1}
for i = 1, n do
  local src = tasks[i]
  for dst, _u in pairs(edge[src]) do
    if len[dst] < 0 then
      len[dst] = len[src] + 1
      table.insert(tasks, dst)
    end
  end
end

local f = 1
local invs = {1}
for i = 2, n do
  f = bmul(f, i)
  invs[i] = bmul(mfl(mod / i), mod - invs[mod % i])
end

local ret = 0
for i = 1, n do
  ret = badd(ret, invs[1 + len[i]])
end
print(bmul(ret, f))
0