結果

問題 No.927 Second Permutation
ユーザー 💕💖💞💕💖💞
提出日時 2019-12-23 21:47:48
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 566 bytes
コンパイル時間 14,787 ms
コンパイル使用メモリ 438,332 KB
実行使用メモリ 71,860 KB
最終ジャッジ日時 2024-09-19 01:29:58
合計ジャッジ時間 31,244 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 336 ms
55,128 KB
testcase_02 AC 336 ms
54,952 KB
testcase_03 AC 335 ms
54,968 KB
testcase_04 AC 336 ms
54,988 KB
testcase_05 AC 334 ms
54,948 KB
testcase_06 AC 332 ms
54,904 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 472 ms
62,516 KB
testcase_25 AC 450 ms
60,148 KB
testcase_26 AC 433 ms
58,776 KB
testcase_27 AC 435 ms
58,056 KB
testcase_28 AC 472 ms
62,332 KB
testcase_29 AC 468 ms
60,740 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[b.size-1] = b[i]
            b[i] = last
            break
        }
    }
    if(good == false) {
        println(-1)
    } else if(b.first() == 0) {
        println(-1)
    } else {
        println(b)
    }
}
0