結果

問題 No.827 総神童数
ユーザー rutilicusrutilicus
提出日時 2020-10-18 11:17:43
言語 Kotlin
(1.9.23)
結果
RE  
実行時間 -
コード長 1,559 bytes
コンパイル時間 15,836 ms
コンパイル使用メモリ 442,280 KB
実行使用メモリ 106,112 KB
最終ジャッジ日時 2024-07-21 03:21:49
合計ジャッジ時間 44,539 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 310 ms
51,668 KB
testcase_01 AC 309 ms
51,680 KB
testcase_02 AC 312 ms
51,656 KB
testcase_03 AC 314 ms
51,856 KB
testcase_04 AC 310 ms
51,624 KB
testcase_05 AC 310 ms
51,716 KB
testcase_06 AC 312 ms
51,384 KB
testcase_07 AC 294 ms
50,640 KB
testcase_08 AC 314 ms
51,720 KB
testcase_09 RE -
testcase_10 RE -
testcase_11 AC 445 ms
55,416 KB
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 AC 993 ms
106,112 KB
testcase_20 AC 909 ms
103,424 KB
testcase_21 AC 706 ms
91,592 KB
testcase_22 AC 917 ms
103,804 KB
testcase_23 AC 358 ms
52,568 KB
testcase_24 AC 957 ms
104,408 KB
testcase_25 AC 895 ms
102,988 KB
testcase_26 AC 925 ms
104,560 KB
testcase_27 AC 856 ms
92,792 KB
testcase_28 AC 790 ms
92,192 KB
testcase_29 AC 734 ms
91,236 KB
testcase_30 AC 552 ms
69,368 KB
testcase_31 AC 690 ms
90,660 KB
testcase_32 AC 695 ms
90,216 KB
testcase_33 AC 984 ms
104,808 KB
testcase_34 AC 958 ms
104,332 KB
testcase_35 AC 698 ms
90,360 KB
testcase_36 AC 690 ms
91,508 KB
testcase_37 AC 850 ms
102,788 KB
testcase_38 AC 966 ms
104,708 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:49:13: warning: 'appendln(Long): kotlin.text.StringBuilder /* = java.lang.StringBuilder */' is deprecated. Use appendLine instead. Note that the new method always appends the line feed character '\n' regardless of the system line separator.
    builder.appendln(dfs(0, -1, 1))
            ^

ソースコード

diff #

fun main() {
    val builder = StringBuilder()

    val mod = 1000000007L

    // 解説読むとなんでこんな単純な数え上げもできないのかと嫌になりますね
    
    val n = readInputLine().toInt()
    val edges = Array(n) { mutableListOf<Int>() }

    repeat(n - 1) {
        val (u, v) = readInputLine().split(" ").map { it.toInt() - 1 }
        edges[u].add(v)
        edges[v].add(u)
    }

    // 1~nの階乗、逆元
    val factorial = LongArray(n + 1)
    val inverse = LongArray(n + 1)
    val factorialInverse = LongArray(n + 1)
    factorial[0] = 1L
    factorial[1] = 1L
    inverse[0] = 1L
    inverse[1] = 1L
    factorialInverse[0] = 1L
    factorialInverse[1] = 1L
    for (i in 2..n) {
        factorial[i] = (factorial[i - 1] * i.toLong() % mod)
        inverse[i] = (mod - inverse[mod.toInt() % i] * (mod / i.toLong()) % mod)
        factorialInverse[i] = (factorialInverse[i - 1] * inverse[i] % mod)
    }

    fun nCm(n: Int, m: Int): Long {
        return factorial[n] * (factorialInverse[m] * factorialInverse[n - m] % mod) % mod
    }

    fun dfs(node: Int, parent: Int, depth: Int): Long {
        var ret = nCm(n, depth) * factorial[depth - 1] % mod * factorial[n - depth]
        for (e in edges[node]) {
            if (e == parent) {
                continue
            }
            ret += dfs(e, node, depth + 1)
            ret %= mod
        }
        return ret
    }

    builder.appendln(dfs(0, -1, 1))

    print(builder.toString())
}

fun readInputLine(): String {
    return readLine()!!
}
0