結果

問題 No.2023 Tiling is Fun
ユーザー 箱星箱星
提出日時 2022-06-07 20:29:07
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 347 ms / 2,000 ms
コード長 1,069 bytes
コンパイル時間 13,318 ms
コンパイル使用メモリ 434,348 KB
実行使用メモリ 76,032 KB
最終ジャッジ日時 2024-07-19 11:42:19
合計ジャッジ時間 20,142 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 276 ms
51,624 KB
testcase_01 AC 329 ms
67,204 KB
testcase_02 AC 321 ms
59,352 KB
testcase_03 AC 322 ms
59,976 KB
testcase_04 AC 289 ms
52,764 KB
testcase_05 AC 317 ms
59,184 KB
testcase_06 AC 325 ms
60,008 KB
testcase_07 AC 339 ms
69,880 KB
testcase_08 AC 340 ms
63,280 KB
testcase_09 AC 333 ms
68,212 KB
testcase_10 AC 335 ms
67,836 KB
testcase_11 AC 282 ms
51,728 KB
testcase_12 AC 282 ms
51,692 KB
testcase_13 AC 276 ms
51,580 KB
testcase_14 AC 330 ms
63,920 KB
testcase_15 AC 321 ms
63,676 KB
testcase_16 AC 326 ms
63,808 KB
testcase_17 AC 343 ms
75,848 KB
testcase_18 AC 344 ms
76,032 KB
testcase_19 AC 347 ms
68,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fun main() {
    val (a, b) = readLongs()
    fun fac(n: Long) = (1..n).map { ModInt(it) }.fold(ModInt(1), ModInt::times)
    println(fac(a + b - 2) / (fac(a - 1) * fac(b - 1)))
}

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

    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 toString(): String {
        return "$x"
    }
}
// endregion

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