結果
問題 | No.570 3人兄弟(その1) |
ユーザー | ichibanshibori |
提出日時 | 2018-05-03 18:38:28 |
言語 | Kotlin (1.9.23) |
結果 |
AC
|
実行時間 | 332 ms / 2,000 ms |
コード長 | 219 bytes |
コンパイル時間 | 12,378 ms |
コンパイル使用メモリ | 423,564 KB |
実行使用メモリ | 60,184 KB |
最終ジャッジ日時 | 2024-11-20 15:55:43 |
合計ジャッジ時間 | 14,298 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 326 ms
60,108 KB |
testcase_01 | AC | 325 ms
60,180 KB |
testcase_02 | AC | 325 ms
60,184 KB |
testcase_03 | AC | 332 ms
60,172 KB |
testcase_04 | AC | 326 ms
60,112 KB |
testcase_05 | AC | 327 ms
60,116 KB |
testcase_06 | AC | 326 ms
60,072 KB |
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used fun main(args : Array<String>) { ^
ソースコード
fun main(args : Array<String>) { val hLst = (1..3).map { readLine() ?: "" }.map { it.toInt() } listOf("A", "B", "C") .zip(hLst) .sortedByDescending { it.second } .map { it.first } .forEach { println(it) } }