結果

問題 No.267 トランプソート
ユーザー バカらっくバカらっく
提出日時 2023-01-26 01:54:18
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 335 ms / 1,000 ms
コード長 703 bytes
コンパイル時間 11,392 ms
コンパイル使用メモリ 435,032 KB
実行使用メモリ 60,448 KB
最終ジャッジ日時 2024-06-27 02:08:32
合計ジャッジ時間 20,172 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 323 ms
60,248 KB
testcase_01 AC 327 ms
60,288 KB
testcase_02 AC 335 ms
60,384 KB
testcase_03 AC 313 ms
57,096 KB
testcase_04 AC 318 ms
60,300 KB
testcase_05 AC 321 ms
60,284 KB
testcase_06 AC 321 ms
60,252 KB
testcase_07 AC 321 ms
60,296 KB
testcase_08 AC 323 ms
60,252 KB
testcase_09 AC 322 ms
60,396 KB
testcase_10 AC 322 ms
60,120 KB
testcase_11 AC 322 ms
60,180 KB
testcase_12 AC 319 ms
60,140 KB
testcase_13 AC 316 ms
60,348 KB
testcase_14 AC 317 ms
60,292 KB
testcase_15 AC 326 ms
60,124 KB
testcase_16 AC 319 ms
60,448 KB
testcase_17 AC 317 ms
60,304 KB
testcase_18 AC 319 ms
60,384 KB
testcase_19 AC 319 ms
60,400 KB
testcase_20 AC 325 ms
60,396 KB
testcase_21 AC 319 ms
60,352 KB
testcase_22 AC 319 ms
60,368 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^
Main.kt:2:9: warning: variable 'n' is never used
    val n = readLine()!!.toInt()
        ^

ソースコード

diff #

fun main(args: Array<String>) {
    val n = readLine()!!.toInt()
    val cards = readLine()!!.split(" ").map { Card(it) }.sorted()
    println(cards.map { it.value }.joinToString(" "))
}

data class Card(val value:String):Comparable<Card> {
    override fun compareTo(other: Card): Int {
        val suit = "DCHS"
        val idx1 = suit.indexOf(value[0])
        val idxOther1 = suit.indexOf(other.value[0])
        if(idx1 == idxOther1) {
            val number = "A23456789TJQK"
            val subIdx1 = number.indexOf(value[1])
            val subIdxOther = number.indexOf(other.value[1])
            return subIdx1.compareTo(subIdxOther)
        }
        return idx1.compareTo(idxOther1)
    }

}
0