結果

問題 No.1191 数え上げを愛したい(数列編)
ユーザー yudedakoyudedako
提出日時 2020-08-28 18:47:15
言語 Kotlin
(1.9.23)
結果
RE  
実行時間 -
コード長 843 bytes
コンパイル時間 12,718 ms
コンパイル使用メモリ 443,612 KB
実行使用メモリ 80,272 KB
最終ジャッジ日時 2024-11-13 23:35:26
合計ジャッジ時間 24,783 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 442 ms
70,056 KB
testcase_01 AC 443 ms
78,140 KB
testcase_02 AC 442 ms
78,232 KB
testcase_03 AC 427 ms
78,008 KB
testcase_04 AC 465 ms
80,272 KB
testcase_05 AC 432 ms
67,924 KB
testcase_06 AC 436 ms
77,864 KB
testcase_07 AC 448 ms
80,016 KB
testcase_08 AC 455 ms
79,972 KB
testcase_09 AC 465 ms
80,024 KB
testcase_10 AC 435 ms
75,800 KB
testcase_11 AC 432 ms
76,016 KB
testcase_12 AC 435 ms
77,968 KB
testcase_13 AC 433 ms
77,868 KB
testcase_14 AC 452 ms
80,072 KB
testcase_15 AC 382 ms
61,592 KB
testcase_16 AC 382 ms
61,388 KB
testcase_17 AC 374 ms
61,344 KB
testcase_18 AC 380 ms
61,616 KB
testcase_19 AC 394 ms
63,656 KB
testcase_20 RE -
testcase_21 AC 363 ms
59,340 KB
testcase_22 AC 433 ms
70,172 KB
testcase_23 AC 319 ms
56,964 KB
testcase_24 AC 319 ms
57,052 KB
testcase_25 AC 317 ms
57,032 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:14:24: warning: name shadowed: n
    val combination = {n: Int, r: Int ->
                       ^

ソースコード

diff #

import kotlin.math.min

fun main() {
    val mod = 998244353
    val (n, m, a, b) = readLine()!!.trim().split(' ').map(String::toInt)
    val factorial = LongArray(m + n + 1){1L}
    val div = LongArray(m + n + 1){1L}
    val inverse = LongArray(m + n + 1){1L}
    for (i in 2 until factorial.size) {
        factorial[i] = i * factorial[i - 1] % mod
        div[i] = (mod - mod / i) * div[mod % i] % mod
        inverse[i] = div[i] * inverse[i - 1] % mod
    }
    val combination = {n: Int, r: Int ->
        if (n >= r && r >= 0) factorial[n] * inverse[r] % mod * inverse[n - r] % mod
        else 0
    }
    val result = (1 .. m).map {smaller ->
        val greater = min(smaller + b, m)
        val diff = greater - a * n + a - smaller
        combination(diff + n - 1, n - 1)
    }
    println(result.sum() % mod * factorial[n] % mod)
}
0