結果

問題 No.39 桁の数字を入れ替え
ユーザー バカらっくバカらっく
提出日時 2021-11-10 09:49:58
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 339 ms / 5,000 ms
コード長 447 bytes
コンパイル時間 13,465 ms
コンパイル使用メモリ 432,612 KB
実行使用メモリ 60,364 KB
最終ジャッジ日時 2024-11-20 18:27:38
合計ジャッジ時間 19,542 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 332 ms
60,264 KB
testcase_01 AC 330 ms
60,332 KB
testcase_02 AC 335 ms
60,184 KB
testcase_03 AC 332 ms
60,164 KB
testcase_04 AC 333 ms
60,196 KB
testcase_05 AC 333 ms
60,192 KB
testcase_06 AC 339 ms
60,256 KB
testcase_07 AC 337 ms
60,252 KB
testcase_08 AC 332 ms
60,328 KB
testcase_09 AC 333 ms
60,256 KB
testcase_10 AC 332 ms
60,268 KB
testcase_11 AC 338 ms
60,344 KB
testcase_12 AC 337 ms
60,308 KB
testcase_13 AC 328 ms
60,332 KB
testcase_14 AC 330 ms
60,168 KB
testcase_15 AC 328 ms
60,272 KB
testcase_16 AC 324 ms
60,204 KB
testcase_17 AC 331 ms
60,328 KB
testcase_18 AC 339 ms
60,364 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

fun main(args: Array<String>) {
    val n = readLine()!!.map { it.toString().toInt() }.toMutableList()
    val a = mutableListOf<MutableList<Int>>().also { it.add(n) }
    for(i in (0 until n.lastIndex)) {
        for(j in (1 .. n.lastIndex)) {
            val tmp = n.toMutableList()
            tmp[i] = n[j]
            tmp[j] = n[i]
            a.add(tmp)
        }
    }
    println(a.map { it.joinToString("") }.sortedDescending().first())
}
0