結果

問題 No.1043 直列大学
ユーザー rutilicusrutilicus
提出日時 2020-10-10 11:44:40
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 972 ms / 2,000 ms
コード長 1,756 bytes
コンパイル時間 15,377 ms
コンパイル使用メモリ 442,496 KB
実行使用メモリ 259,312 KB
最終ジャッジ日時 2024-12-22 20:15:08
合計ジャッジ時間 37,926 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 370 ms
61,496 KB
testcase_01 AC 329 ms
59,012 KB
testcase_02 AC 423 ms
68,588 KB
testcase_03 AC 342 ms
59,156 KB
testcase_04 AC 342 ms
59,116 KB
testcase_05 AC 326 ms
58,996 KB
testcase_06 AC 343 ms
59,040 KB
testcase_07 AC 407 ms
66,540 KB
testcase_08 AC 404 ms
66,344 KB
testcase_09 AC 654 ms
149,488 KB
testcase_10 AC 742 ms
182,032 KB
testcase_11 AC 891 ms
195,444 KB
testcase_12 AC 956 ms
259,028 KB
testcase_13 AC 804 ms
181,952 KB
testcase_14 AC 827 ms
191,492 KB
testcase_15 AC 933 ms
259,152 KB
testcase_16 AC 848 ms
187,496 KB
testcase_17 AC 746 ms
182,028 KB
testcase_18 AC 737 ms
181,992 KB
testcase_19 AC 835 ms
181,836 KB
testcase_20 AC 717 ms
181,832 KB
testcase_21 AC 814 ms
182,044 KB
testcase_22 AC 820 ms
182,000 KB
testcase_23 AC 972 ms
259,312 KB
testcase_24 AC 803 ms
181,928 KB
testcase_25 AC 868 ms
181,756 KB
testcase_26 AC 887 ms
191,608 KB
testcase_27 AC 643 ms
149,156 KB
testcase_28 AC 854 ms
181,972 KB
testcase_29 AC 535 ms
110,148 KB
testcase_30 AC 739 ms
181,908 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