結果

問題 No.29 パワーアップ
ユーザー yo-kondoyo-kondo
提出日時 2019-01-03 16:59:20
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 315 ms / 5,000 ms
コード長 1,631 bytes
コンパイル時間 13,479 ms
コンパイル使用メモリ 445,508 KB
実行使用メモリ 52,064 KB
最終ジャッジ日時 2024-11-20 17:21:28
合計ジャッジ時間 20,463 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 304 ms
51,536 KB
testcase_01 AC 309 ms
51,864 KB
testcase_02 AC 301 ms
51,880 KB
testcase_03 AC 303 ms
51,660 KB
testcase_04 AC 300 ms
51,840 KB
testcase_05 AC 309 ms
51,928 KB
testcase_06 AC 309 ms
52,064 KB
testcase_07 AC 300 ms
51,572 KB
testcase_08 AC 298 ms
51,892 KB
testcase_09 AC 303 ms
51,760 KB
testcase_10 AC 312 ms
51,784 KB
testcase_11 AC 314 ms
51,824 KB
testcase_12 AC 306 ms
51,540 KB
testcase_13 AC 301 ms
51,680 KB
testcase_14 AC 312 ms
52,004 KB
testcase_15 AC 311 ms
51,824 KB
testcase_16 AC 308 ms
51,928 KB
testcase_17 AC 306 ms
51,652 KB
testcase_18 AC 315 ms
52,004 KB
testcase_19 AC 301 ms
51,684 KB
testcase_20 AC 289 ms
51,876 KB
testcase_21 AC 310 ms
51,624 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:17:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

// No.29 パワーアップ
// https://yukicoder.me/problems/no/29

package no01.yukicoder.no29

/** インプットデータ */
data class InputData(
    /** 敵を倒す回数 */
    val count: Int,
    /** アイテムの番号 */
    val itemNo: List<Int>
)

/**
 * エントリポイント
 */
fun main(args: Array<String>) {
    val input = getStandardInput()
    println(powerUp(input))
}

/**
 * パワーアップする最大回数を返します。
 */
fun powerUp(input: List<String>): Int {
    val data = createInputData(input)

    var level = 0
    val group = data.itemNo
        .groupBy { it }
        .filter { it.value.size >= 2 }
    // マップをキーと値のペアでループする
    for ((_, v) in group) {
        // 同じアイテム2つで1レベル
        level += v.size / 2
    }
    // 違うアイテム4つで1レベル
    return level + (data.itemNo.size - level * 2) / 4
}

/**
 * 標準入力から取得した文字列をInputDataに変換して返します。
 */
fun createInputData(input: List<String>): InputData {
    val count = input[0].toInt()
    val getItemNo = mutableListOf<Int>()

    for ((i, v) in input.withIndex()) {
        if (i == 0) {
            continue
        }
        getItemNo.addAll(v.split(" ").map { it.toInt() })
    }
    return InputData(count, getItemNo)
}

/**
 * 標準入力から文字列を全て取得します。
 */
fun getStandardInput(): List<String> {
    val lines = mutableListOf<String>()
    var line: String?
    line = readLine()
    while (line != null) {
        lines.add(line)
        line = readLine()
    }
    return lines
}
0