結果

問題 No.927 Second Permutation
ユーザー 💕💖💞💕💖💞
提出日時 2019-12-23 21:55:25
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 608 ms / 2,000 ms
コード長 597 bytes
コンパイル時間 12,679 ms
コンパイル使用メモリ 441,388 KB
実行使用メモリ 71,308 KB
最終ジャッジ日時 2024-09-19 01:48:52
合計ジャッジ時間 27,137 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 281 ms
54,752 KB
testcase_01 AC 292 ms
54,848 KB
testcase_02 AC 309 ms
54,760 KB
testcase_03 AC 297 ms
55,220 KB
testcase_04 AC 286 ms
54,876 KB
testcase_05 AC 291 ms
54,924 KB
testcase_06 AC 298 ms
55,076 KB
testcase_07 AC 315 ms
54,772 KB
testcase_08 AC 492 ms
61,896 KB
testcase_09 AC 321 ms
55,244 KB
testcase_10 AC 535 ms
64,912 KB
testcase_11 AC 596 ms
69,376 KB
testcase_12 AC 498 ms
63,264 KB
testcase_13 AC 379 ms
56,448 KB
testcase_14 AC 537 ms
64,364 KB
testcase_15 AC 489 ms
62,400 KB
testcase_16 AC 568 ms
71,124 KB
testcase_17 AC 575 ms
70,404 KB
testcase_18 AC 592 ms
70,960 KB
testcase_19 AC 608 ms
70,908 KB
testcase_20 AC 593 ms
71,308 KB
testcase_21 AC 592 ms
70,864 KB
testcase_22 AC 578 ms
71,048 KB
testcase_23 AC 584 ms
70,572 KB
testcase_24 AC 394 ms
62,768 KB
testcase_25 AC 382 ms
60,048 KB
testcase_26 AC 374 ms
58,928 KB
testcase_27 AC 359 ms
58,128 KB
testcase_28 AC 407 ms
62,124 KB
testcase_29 AC 408 ms
60,792 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args:Array<String>) {
         ^

ソースコード

diff #

fun main(args:Array<String>) {
    val a = readLine()!!
    val b = a.toList().sorted().reversed().map { it.toString().toInt() }.toMutableList()

    //println(a)
    //println(b)
    val last = b.last()
    var good = false
    for(i in b.size-1 downTo 0 step 1) {
        //println(b[i])
        if( last != b[i]) {
            good = true
            b[i+1] = b[i]
            b[i] = last
            break
        }
    }
    if(good == false) {
        println(-1)
    } else if(b.first() == 0) {
        println(-1)
    } else {
        println(b.map{it.toString()}.joinToString(""))
    }
}
0