結果

問題 No.269 見栄っ張りの募金活動
ユーザー yudedakoyudedako
提出日時 2022-01-10 18:53:56
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 333 ms / 5,000 ms
コード長 495 bytes
コンパイル時間 11,737 ms
コンパイル使用メモリ 434,072 KB
実行使用メモリ 60,576 KB
最終ジャッジ日時 2024-11-14 11:01:58
合計ジャッジ時間 21,071 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 296 ms
57,056 KB
testcase_01 AC 309 ms
60,356 KB
testcase_02 AC 297 ms
56,992 KB
testcase_03 AC 320 ms
60,472 KB
testcase_04 AC 332 ms
60,420 KB
testcase_05 AC 314 ms
60,412 KB
testcase_06 AC 317 ms
60,352 KB
testcase_07 AC 333 ms
60,396 KB
testcase_08 AC 319 ms
60,404 KB
testcase_09 AC 313 ms
57,024 KB
testcase_10 AC 318 ms
60,424 KB
testcase_11 AC 326 ms
60,356 KB
testcase_12 AC 303 ms
57,128 KB
testcase_13 AC 330 ms
60,576 KB
testcase_14 AC 324 ms
60,404 KB
testcase_15 AC 324 ms
60,412 KB
testcase_16 AC 301 ms
56,992 KB
testcase_17 AC 299 ms
57,196 KB
testcase_18 AC 326 ms
60,568 KB
testcase_19 AC 321 ms
60,456 KB
testcase_20 AC 316 ms
60,444 KB
testcase_21 AC 311 ms
60,448 KB
testcase_22 AC 322 ms
60,396 KB
testcase_23 AC 316 ms
60,536 KB
testcase_24 AC 322 ms
60,420 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

const val MOD = 1000000007
fun main() {
    val (n, target, k) = readLine()!!.trim().split(' ').map(String::toInt)
    val initial = n * (n - 1) / 2 * k
    if (initial !in 0 .. target) {
        println(0)
        return
    }
    val memo = IntArray(target - initial + 1).also{it[0] = 1}
    for (i in 0 until n) {
        val rest = n - i
        for (j in 0 .. memo.lastIndex - rest) {
            memo[j + rest] = (memo[j + rest] + memo[j]) % MOD
        }
    }
    println(memo.last())
}
0