結果

問題 No.2199 lower_bound and upper_bound
ユーザー 箱星箱星
提出日時 2022-05-04 05:58:12
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 312 ms / 2,000 ms
コード長 1,661 bytes
コンパイル時間 12,972 ms
コンパイル使用メモリ 457,628 KB
実行使用メモリ 81,276 KB
最終ジャッジ日時 2024-10-05 15:43:39
合計ジャッジ時間 21,918 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 269 ms
51,504 KB
testcase_01 AC 274 ms
51,552 KB
testcase_02 AC 282 ms
53,372 KB
testcase_03 AC 270 ms
51,548 KB
testcase_04 AC 269 ms
51,676 KB
testcase_05 AC 285 ms
51,636 KB
testcase_06 AC 286 ms
51,560 KB
testcase_07 AC 274 ms
51,840 KB
testcase_08 AC 291 ms
51,568 KB
testcase_09 AC 280 ms
51,692 KB
testcase_10 AC 301 ms
66,116 KB
testcase_11 AC 292 ms
66,212 KB
testcase_12 AC 303 ms
75,508 KB
testcase_13 AC 312 ms
81,276 KB
testcase_14 AC 308 ms
81,248 KB
testcase_15 AC 299 ms
81,128 KB
testcase_16 AC 305 ms
72,044 KB
testcase_17 AC 300 ms
80,124 KB
testcase_18 AC 292 ms
70,820 KB
testcase_19 AC 311 ms
81,212 KB
testcase_20 AC 298 ms
76,612 KB
testcase_21 AC 300 ms
81,056 KB
testcase_22 AC 293 ms
62,288 KB
testcase_23 AC 296 ms
75,976 KB
testcase_24 AC 287 ms
63,576 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fun main() {
    val (n, l, u) = readLongs()
    println(binom(2 * n + u, n) - binom(2 * n + l - 1, n) - binom(2 * n + u, n + u + 2) + binom(2 * n + l - 1, n + u + 2))
}

// region ModInt
class ModInt(x: Long) {
    companion object {
        const val MOD = 998244353L
        //const val MOD = 1000000007L
    }

    constructor(y: Int) : this(y.toLong())

    val x = (x % MOD + MOD) % MOD

    operator fun plus(other: ModInt): ModInt {
        return ModInt(x + other.x)
    }

    operator fun minus(other: ModInt): ModInt {
        return ModInt(x - other.x)
    }

    operator fun times(other: ModInt): ModInt {
        return ModInt(x * other.x)
    }

    operator fun div(other: ModInt): ModInt {
        return this * other.inv()
    }

    fun pow(exp: Long): ModInt {
        if (exp == 0L) return ModInt(1L)
        var a = pow(exp shr 1)
        a *= a
        if (exp and 1L == 0L) return a
        return this * a
    }

    fun inv(): ModInt {
        return this.pow(MOD - 2)
    }

    override fun equals(other: Any?): Boolean {
        if (this === other) return true
        if (javaClass != other?.javaClass) return false

        other as ModInt

        if (x != other.x) return false

        return true
    }

    override fun hashCode(): Int {
        return x.hashCode()
    }

    override fun toString(): String {
        return "$x"
    }
}

fun binom(n: Long, k: Long): ModInt {
    var numer = ModInt(1)
    var denom = ModInt(1)
    for (i in 0 until k) {
        numer *= ModInt(n - i)
        denom *= ModInt(k - i)
    }
    return numer / denom
}
// endregion

fun readLongs() = readln().split(" ").map { it.toLong() }
0