結果

問題 No.1628 Sorting Integers (MAX of M)
ユーザー バカらっくバカらっく
提出日時 2022-02-03 12:23:56
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 297 ms / 2,000 ms
コード長 431 bytes
コンパイル時間 10,230 ms
コンパイル使用メモリ 436,600 KB
実行使用メモリ 52,276 KB
最終ジャッジ日時 2024-06-11 09:47:16
合計ジャッジ時間 13,924 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 297 ms
52,140 KB
testcase_01 AC 279 ms
52,200 KB
testcase_02 AC 284 ms
52,204 KB
testcase_03 AC 284 ms
52,276 KB
testcase_04 AC 280 ms
52,244 KB
testcase_05 AC 297 ms
51,944 KB
testcase_06 AC 290 ms
52,096 KB
testcase_07 AC 284 ms
51,980 KB
testcase_08 AC 280 ms
51,868 KB
testcase_09 AC 287 ms
51,964 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:3:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^
Main.kt:4:9: warning: variable 'n' is never used
    val n = readLine()!!.toInt()
        ^

ソースコード

diff #

import java.lang.StringBuilder

fun main(args: Array<String>) {
    val n = readLine()!!.toInt()
    val c = readLine()!!.split(" ").map { it.toInt() }
    var ans = ""
    c.indices.reversed().forEach { idx ->
        c[idx].let { cnt ->
            if(cnt > 0) {
                (idx+1).toString()[0].let { num ->
                    ans += "".padStart(cnt, num)
                }
            }
        }
    }
    println(ans)
}
0