結果

問題 No.39 桁の数字を入れ替え
ユーザー バカらっくバカらっく
提出日時 2019-09-07 20:59:02
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 530 bytes
コンパイル時間 13,517 ms
コンパイル使用メモリ 437,976 KB
実行使用メモリ 57,100 KB
最終ジャッジ日時 2024-06-27 04:30:41
合計ジャッジ時間 20,675 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 308 ms
56,868 KB
testcase_01 AC 310 ms
56,896 KB
testcase_02 AC 309 ms
56,840 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 309 ms
56,988 KB
testcase_08 AC 312 ms
56,980 KB
testcase_09 AC 306 ms
56,980 KB
testcase_10 AC 312 ms
56,832 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 317 ms
56,764 KB
testcase_15 AC 314 ms
56,964 KB
testcase_16 AC 328 ms
56,784 KB
testcase_17 AC 320 ms
56,872 KB
testcase_18 AC 313 ms
56,952 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'arr' is never used
fun main(arr:Array<String>) {
         ^
Main.kt:5:46: warning: unnecessary non-null assertion (!!) on a non-null receiver of type Char
        val idx = inpt.lastIndexOf(inpt.max()!!)
                                             ^

ソースコード

diff #

fun main(arr:Array<String>) {
    val inpt = readLine()!!.map { it }.toMutableList()
    val ans = mutableListOf<Char>()
    (1..inpt.size).forEach {
        val idx = inpt.lastIndexOf(inpt.max()!!)
        if(idx == 0)  {
            ans.add(inpt[0])
            inpt.removeAt(0)
        } else {
            val tmp = inpt[idx]
            inpt[idx] = inpt[0]
            inpt[0] = tmp
            ans.addAll(inpt)
            println(ans.joinToString(""))
            return
        }
    }
    println(ans.joinToString(""))

}
0