結果

問題 No.571 3人兄弟(その2)
ユーザー R_FR_F
提出日時 2017-11-28 13:54:57
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 387 ms / 2,000 ms
コード長 765 bytes
コンパイル時間 12,074 ms
コンパイル使用メモリ 437,792 KB
実行使用メモリ 61,320 KB
最終ジャッジ日時 2024-11-20 13:19:16
合計ジャッジ時間 18,608 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 387 ms
61,296 KB
testcase_01 AC 381 ms
61,128 KB
testcase_02 AC 381 ms
61,216 KB
testcase_03 AC 384 ms
61,260 KB
testcase_04 AC 386 ms
61,184 KB
testcase_05 AC 384 ms
61,160 KB
testcase_06 AC 378 ms
61,120 KB
testcase_07 AC 375 ms
61,208 KB
testcase_08 AC 383 ms
61,248 KB
testcase_09 AC 379 ms
61,256 KB
testcase_10 AC 377 ms
61,260 KB
testcase_11 AC 381 ms
61,320 KB
testcase_12 AC 379 ms
61,164 KB
testcase_13 AC 379 ms
61,308 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