結果

問題 No.39 桁の数字を入れ替え
ユーザー バカらっくバカらっく
提出日時 2019-09-07 21:01:48
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 329 ms / 5,000 ms
コード長 594 bytes
コンパイル時間 14,986 ms
コンパイル使用メモリ 433,820 KB
実行使用メモリ 57,064 KB
最終ジャッジ日時 2024-06-27 04:33:19
合計ジャッジ時間 19,594 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 325 ms
56,800 KB
testcase_01 AC 319 ms
56,828 KB
testcase_02 AC 329 ms
56,984 KB
testcase_03 AC 326 ms
57,064 KB
testcase_04 AC 322 ms
56,852 KB
testcase_05 AC 326 ms
56,780 KB
testcase_06 AC 327 ms
57,028 KB
testcase_07 AC 321 ms
56,936 KB
testcase_08 AC 327 ms
56,976 KB
testcase_09 AC 315 ms
56,924 KB
testcase_10 AC 313 ms
56,964 KB
testcase_11 AC 323 ms
57,040 KB
testcase_12 AC 325 ms
57,008 KB
testcase_13 AC 321 ms
57,036 KB
testcase_14 AC 322 ms
56,792 KB
testcase_15 AC 317 ms
57,004 KB
testcase_16 AC 319 ms
56,980 KB
testcase_17 AC 324 ms
57,032 KB
testcase_18 AC 322 ms
56,976 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'arr' is never used
fun main(arr:Array<String>) {
         ^
Main.kt:5:42: warning: unnecessary non-null assertion (!!) on a non-null receiver of type Char
        val idx = inpt.indexOf(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.indexOf(inpt.max()!!)
        if(idx == 0)  {
            ans.add(inpt[0])
            inpt.removeAt(0)
        } else {
            val lastIndex = inpt.lastIndexOf(inpt[idx])
            val tmp = inpt[lastIndex]
            inpt[lastIndex] = inpt[0]
            inpt[0] = tmp
            ans.addAll(inpt)
            println(ans.joinToString(""))
            return
        }
    }
    println(ans.joinToString(""))

}
0