結果

問題 No.571 3人兄弟(その2)
ユーザー R_FR_F
提出日時 2017-11-28 13:54:57
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 372 ms / 2,000 ms
コード長 765 bytes
コンパイル時間 12,182 ms
コンパイル使用メモリ 435,116 KB
実行使用メモリ 61,328 KB
最終ジャッジ日時 2024-04-30 16:32:44
合計ジャッジ時間 17,930 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 367 ms
61,112 KB
testcase_01 AC 367 ms
61,240 KB
testcase_02 AC 361 ms
60,968 KB
testcase_03 AC 366 ms
61,268 KB
testcase_04 AC 365 ms
61,264 KB
testcase_05 AC 364 ms
61,252 KB
testcase_06 AC 364 ms
61,064 KB
testcase_07 AC 367 ms
61,296 KB
testcase_08 AC 369 ms
61,200 KB
testcase_09 AC 371 ms
61,144 KB
testcase_10 AC 365 ms
61,296 KB
testcase_11 AC 365 ms
61,308 KB
testcase_12 AC 367 ms
61,328 KB
testcase_13 AC 372 ms
61,288 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:18:10: warning: parameter 'args' is never used
fun main(args: Array<String>){
         ^

ソースコード

diff #

import java.util.Scanner

var input = Scanner(System. `in`)

fun inputHeightAndWeight(heightMap: MutableMap<String, IntArray>){
	heightMap["A"] = intArrayOf(input.nextInt(), input.nextInt())
	heightMap["B"] = intArrayOf(input.nextInt(), input.nextInt())
	heightMap["C"] = intArrayOf(input.nextInt(), input.nextInt())
	sort(heightMap)
}

fun sort(heightMap: MutableMap<String, IntArray>){
	var weightSort: Map<String, IntArray> = heightMap.toList().sortedBy{ (_, value) -> value[1] }.toMap()
	var heightSort: Map<String, IntArray> = weightSort.toList().sortedBy{ (_, value) -> -value[0] }.toMap()
	heightSort.forEach{ println(it.key) }
}

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