結果

問題 No.1043 直列大学
ユーザー rutilicusrutilicus
提出日時 2020-10-10 11:42:25
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 1,750 bytes
コンパイル時間 13,339 ms
コンパイル使用メモリ 445,980 KB
実行使用メモリ 258,016 KB
最終ジャッジ日時 2024-07-20 15:52:04
合計ジャッジ時間 36,800 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 360 ms
56,152 KB
testcase_01 AC 330 ms
54,360 KB
testcase_02 AC 412 ms
63,924 KB
testcase_03 AC 333 ms
54,492 KB
testcase_04 AC 331 ms
54,328 KB
testcase_05 AC 327 ms
54,476 KB
testcase_06 AC 331 ms
54,276 KB
testcase_07 AC 423 ms
61,004 KB
testcase_08 AC 417 ms
60,776 KB
testcase_09 AC 689 ms
146,796 KB
testcase_10 AC 789 ms
181,204 KB
testcase_11 WA -
testcase_12 AC 1,028 ms
257,988 KB
testcase_13 WA -
testcase_14 AC 915 ms
189,032 KB
testcase_15 AC 1,020 ms
258,016 KB
testcase_16 AC 908 ms
186,040 KB
testcase_17 AC 798 ms
181,212 KB
testcase_18 AC 804 ms
181,284 KB
testcase_19 AC 887 ms
181,872 KB
testcase_20 AC 785 ms
181,260 KB
testcase_21 AC 846 ms
181,188 KB
testcase_22 AC 869 ms
181,220 KB
testcase_23 AC 1,042 ms
257,756 KB
testcase_24 AC 829 ms
181,244 KB
testcase_25 AC 889 ms
181,908 KB
testcase_26 AC 931 ms
189,164 KB
testcase_27 AC 689 ms
146,796 KB
testcase_28 AC 895 ms
181,656 KB
testcase_29 AC 567 ms
108,112 KB
testcase_30 AC 807 ms
181,248 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 + (vCntSum[r.toInt()] - vCntSum[l.toInt() - 1]) * rCnt[m - 1][i]) % mod
            }
        }
    }

    builder.appendln(ans)

    print(builder.toString())
}

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