結果

問題 No.30 たこやき工場
ユーザー バカらっくバカらっく
提出日時 2019-09-05 16:08:40
言語 Kotlin
(1.9.23)
結果
TLE  
実行時間 -
コード長 978 bytes
コンパイル時間 12,869 ms
コンパイル使用メモリ 455,704 KB
実行使用メモリ 98,748 KB
最終ジャッジ日時 2024-06-11 18:35:36
合計ジャッジ時間 23,028 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 282 ms
64,016 KB
testcase_01 AC 295 ms
98,748 KB
testcase_02 AC 296 ms
60,676 KB
testcase_03 AC 294 ms
60,500 KB
testcase_04 AC 296 ms
60,376 KB
testcase_05 AC 291 ms
60,432 KB
testcase_06 AC 294 ms
60,388 KB
testcase_07 AC 311 ms
60,336 KB
testcase_08 AC 407 ms
88,472 KB
testcase_09 AC 310 ms
60,608 KB
testcase_10 TLE -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:3:10: warning: parameter 'arr' is never used
fun main(arr:Array<String>) {
         ^

ソースコード

diff #

import java.util.*

fun main(arr:Array<String>) {
    val zairyoCount = readLine()!!.toInt()
    val seizouCount = readLine()!!.toInt()
    val need = Array<Int>(zairyoCount + 1, {0})

    val seizou = mutableMapOf<Int, MutableMap<Int, Int>>()
    (1..seizouCount).forEach {
        val (zairyo, value, dekiru) = readLine()!!.split(" ").map { it.toInt() }
        if(!seizou.containsKey(dekiru)) {
            seizou[dekiru] = mutableMapOf()
        }
        seizou[dekiru]!![zairyo] = value
    }

    val queue = LinkedList<Task>()
    queue.push(Task(zairyoCount, 1))
    while (queue.isNotEmpty()) {
        val task = queue.pop()
        seizou[task.target]?.also {
            it.forEach {
                queue.push(Task(it.key, it.value * task.value))
            }
        } ?: run {
            need[task.target] =  need[task.target] + task.value
        }
    }

    need.drop(1).dropLast(1).forEach { println(it) }
}

data class Task(val target:Int, val value:Int)
0