結果

問題 No.1279 Array Battle
ユーザー rutilicusrutilicus
提出日時 2020-11-07 21:09:15
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 318 ms / 2,000 ms
コード長 896 bytes
コンパイル時間 12,513 ms
コンパイル使用メモリ 440,816 KB
実行使用メモリ 57,128 KB
最終ジャッジ日時 2024-07-22 14:49:47
合計ジャッジ時間 19,526 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 289 ms
56,856 KB
testcase_01 AC 288 ms
56,808 KB
testcase_02 AC 289 ms
56,920 KB
testcase_03 AC 281 ms
57,000 KB
testcase_04 AC 287 ms
56,864 KB
testcase_05 AC 297 ms
56,832 KB
testcase_06 AC 290 ms
56,780 KB
testcase_07 AC 287 ms
56,688 KB
testcase_08 AC 285 ms
56,748 KB
testcase_09 AC 287 ms
56,724 KB
testcase_10 AC 288 ms
56,760 KB
testcase_11 AC 291 ms
56,832 KB
testcase_12 AC 297 ms
57,128 KB
testcase_13 AC 301 ms
57,124 KB
testcase_14 AC 297 ms
56,968 KB
testcase_15 AC 317 ms
56,964 KB
testcase_16 AC 303 ms
56,964 KB
testcase_17 AC 318 ms
56,956 KB
testcase_18 AC 316 ms
57,052 KB
testcase_19 AC 309 ms
57,060 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:33:13: warning: 'appendln(Int): 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(maxCnt)
            ^

ソースコード

diff #

import kotlin.math.max

fun main() {
    val builder = StringBuilder()

    val n = readInputLine().toInt()
    val aArr = readInputLine().split(" ").map { it.toInt() }.toIntArray()
    val bArr = readInputLine().split(" ").map { it.toInt() }.toIntArray()

    var max = 0
    var maxCnt = 0

    fun dfs(phase: Int, taken: Int, score: Int) {
        if (phase == n) {
            if (score > max) {
                max = score
                maxCnt = 1
            } else if (score == max) {
                maxCnt++
            }
            return
        }

        for (i in 0 until n) {
            if (taken and (1 shl i) == 0) {
                dfs(phase + 1, taken or (1 shl i), score + max(0, aArr[i] - bArr[phase]))
            }
        }
    }

    dfs(0, 0, 0)

    builder.appendln(maxCnt)

    print(builder.toString())
}

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