結果

問題 No.29 パワーアップ
ユーザー yo-kondoyo-kondo
提出日時 2019-01-03 16:59:20
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 339 ms / 5,000 ms
コード長 1,631 bytes
コンパイル時間 13,991 ms
コンパイル使用メモリ 448,240 KB
実行使用メモリ 57,120 KB
最終ジャッジ日時 2024-04-30 19:47:46
合計ジャッジ時間 22,490 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 327 ms
57,092 KB
testcase_01 AC 326 ms
57,064 KB
testcase_02 AC 326 ms
56,940 KB
testcase_03 AC 332 ms
57,040 KB
testcase_04 AC 331 ms
57,120 KB
testcase_05 AC 334 ms
57,036 KB
testcase_06 AC 332 ms
56,900 KB
testcase_07 AC 328 ms
56,988 KB
testcase_08 AC 325 ms
56,956 KB
testcase_09 AC 321 ms
57,056 KB
testcase_10 AC 338 ms
56,908 KB
testcase_11 AC 333 ms
56,972 KB
testcase_12 AC 334 ms
57,052 KB
testcase_13 AC 339 ms
56,960 KB
testcase_14 AC 335 ms
57,068 KB
testcase_15 AC 333 ms
56,976 KB
testcase_16 AC 335 ms
57,056 KB
testcase_17 AC 331 ms
57,076 KB
testcase_18 AC 329 ms
57,072 KB
testcase_19 AC 333 ms
56,992 KB
testcase_20 AC 321 ms
56,940 KB
testcase_21 AC 329 ms
56,932 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