結果

問題 No.571 3人兄弟(その2)
ユーザー 💕💖💞💕💖💞
提出日時 2018-03-08 12:24:09
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 329 ms / 2,000 ms
コード長 801 bytes
コンパイル時間 10,416 ms
コンパイル使用メモリ 437,888 KB
実行使用メモリ 60,472 KB
最終ジャッジ日時 2024-11-20 14:28:42
合計ジャッジ時間 15,794 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 314 ms
60,340 KB
testcase_01 AC 307 ms
60,264 KB
testcase_02 AC 319 ms
60,472 KB
testcase_03 AC 316 ms
60,360 KB
testcase_04 AC 315 ms
60,316 KB
testcase_05 AC 318 ms
60,156 KB
testcase_06 AC 328 ms
60,252 KB
testcase_07 AC 311 ms
60,140 KB
testcase_08 AC 313 ms
60,160 KB
testcase_09 AC 315 ms
60,308 KB
testcase_10 AC 329 ms
60,348 KB
testcase_11 AC 325 ms
60,240 KB
testcase_12 AC 316 ms
60,168 KB
testcase_13 AC 313 ms
60,460 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args:Array<String>) {                   
         ^
Main.kt:9:10: warning: variable 'k' is never used
    val (k,v) = it                               
         ^

ソースコード

diff #

fun main(args:Array<String>) {                   
  val m = mutableMapOf<String, Pair<String, String>>()                                             
  listOf("A", "B", "C").map {                    
    val input = readLine()!!                     
    val (left, right) = input.split(" ")         
    m[ "${left.padStart(10, '0')}_xxx_${(100000000 - right.toInt()).toString().padStart(10, '0')}" ] = Pair(input, it)                                                                                 
  }                                              
  m.toList().sortedBy { it.first }.reversed().map {                                                
    val (k,v) = it                               
    println(v.second)                            
  }                                              
}
0