結果

問題 No.570 3人兄弟(その1)
ユーザー rkyrky
提出日時 2017-11-26 15:41:02
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 360 ms / 2,000 ms
コード長 501 bytes
コンパイル時間 12,015 ms
コンパイル使用メモリ 434,276 KB
実行使用メモリ 61,300 KB
最終ジャッジ日時 2024-11-20 13:11:09
合計ジャッジ時間 13,267 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 333 ms
61,148 KB
testcase_01 AC 341 ms
61,300 KB
testcase_02 AC 350 ms
61,024 KB
testcase_03 AC 359 ms
61,172 KB
testcase_04 AC 360 ms
61,136 KB
testcase_05 AC 351 ms
61,072 KB
testcase_06 AC 336 ms
61,064 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:16:10: warning: parameter 'args' is never used
fun main(args: Array<String>){
         ^

ソースコード

diff #

import java.util.*

fun inputHeight(heightMap: MutableMap<String, Int>){
	var input = Scanner(System. `in`)
	heightMap["A"] = input.nextInt()
	heightMap["B"] = input.nextInt()
	heightMap["C"] = input.nextInt()
	sort(heightMap)
}

fun sort(heightMap: MutableMap<String, Int>){
	var mapKey = heightMap.toList().sortedBy{ (_, value) -> -value }.toMap()
	mapKey.forEach{ println(it.key) }
}

fun main(args: Array<String>){
	var heightMap: MutableMap<String, Int> = mutableMapOf()
	inputHeight(heightMap)
}
0