結果

問題 No.1043 直列大学
ユーザー rutilicusrutilicus
提出日時 2020-10-10 11:44:40
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 851 ms / 2,000 ms
コード長 1,756 bytes
コンパイル時間 12,659 ms
コンパイル使用メモリ 443,124 KB
実行使用メモリ 260,968 KB
最終ジャッジ日時 2024-06-02 03:24:25
合計ジャッジ時間 32,592 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 326 ms
61,504 KB
testcase_01 AC 299 ms
59,332 KB
testcase_02 AC 382 ms
68,616 KB
testcase_03 AC 292 ms
59,292 KB
testcase_04 AC 297 ms
59,208 KB
testcase_05 AC 300 ms
59,232 KB
testcase_06 AC 301 ms
59,360 KB
testcase_07 AC 364 ms
66,764 KB
testcase_08 AC 376 ms
66,456 KB
testcase_09 AC 601 ms
149,560 KB
testcase_10 AC 665 ms
182,164 KB
testcase_11 AC 800 ms
195,732 KB
testcase_12 AC 849 ms
260,912 KB
testcase_13 AC 773 ms
182,116 KB
testcase_14 AC 768 ms
191,492 KB
testcase_15 AC 851 ms
260,916 KB
testcase_16 AC 770 ms
187,564 KB
testcase_17 AC 661 ms
182,072 KB
testcase_18 AC 657 ms
182,160 KB
testcase_19 AC 749 ms
182,180 KB
testcase_20 AC 657 ms
181,948 KB
testcase_21 AC 719 ms
182,032 KB
testcase_22 AC 742 ms
182,212 KB
testcase_23 AC 834 ms
260,968 KB
testcase_24 AC 690 ms
182,044 KB
testcase_25 AC 752 ms
182,016 KB
testcase_26 AC 782 ms
191,740 KB
testcase_27 AC 572 ms
149,564 KB
testcase_28 AC 742 ms
182,212 KB
testcase_29 AC 476 ms
110,420 KB
testcase_30 AC 671 ms
181,912 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:57: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(ans)
            ^

ソースコード

diff #

fun main() {
    val builder = StringBuilder()

    val mod = 1000000007L

    val (n, m) = readInputLine().split(" ").map { it.toInt() }

    val vCnt = Array(n) { LongArray(100000 + 1) }
    val rCnt = Array(m) { LongArray(100000 + 1) }

    readInputLine().split(" ").forEachIndexed { index, s ->
        val v = s.toInt()
        if (index != 0) {
            for (i in 1..(100000 - v)) {
                vCnt[index][i] = (vCnt[index][i] + vCnt[index - 1][i]) % mod
                vCnt[index][i + v] = (vCnt[index][i + v] + vCnt[index - 1][i]) % mod
            }
        }
        vCnt[index][v] = (vCnt[index][v] + 1) % mod 
    }

    readInputLine().split(" ").forEachIndexed { index, s ->
        val r = s.toInt()
        if (index != 0) {
            for (i in 1..(100000 - r)) {
                rCnt[index][i] = (rCnt[index][i] + rCnt[index - 1][i]) % mod
                rCnt[index][i + r] = (rCnt[index][i + r] + rCnt[index - 1][i]) % mod
            }
        }
        rCnt[index][r] = (rCnt[index][r] + 1) % mod
    }

    val (a, b) = readInputLine().split(" ").map { it.toLong() }

    var ans = 0L

    val vCntSum = LongArray(100000 + 1)

    for (i in 1..100000) {
        vCntSum[i] = vCnt[n - 1][i]
    }

    for (i in 1..100000) {
        vCntSum[i] = (vCntSum[i] + vCntSum[i - 1]) % mod
    }

    for (i in 1..100000) {
        if (rCnt[m - 1][i] != 0L) {
            val l = i.toLong() * a
            val r = (i.toLong() * b).coerceAtMost(100000)
            if (l <= r) {
                ans = (ans + (mod + vCntSum[r.toInt()] - vCntSum[l.toInt() - 1]) * rCnt[m - 1][i]) % mod
            }
        }
    }

    builder.appendln(ans)

    print(builder.toString())
}

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