結果

問題 No.784 「,(カンマ)」
ユーザー 💕💖💞💕💖💞
提出日時 2019-05-06 15:02:21
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 296 ms / 2,000 ms
コード長 273 bytes
コンパイル時間 10,305 ms
コンパイル使用メモリ 433,680 KB
実行使用メモリ 51,936 KB
最終ジャッジ日時 2024-11-20 18:16:52
合計ジャッジ時間 15,209 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 291 ms
51,604 KB
testcase_01 AC 288 ms
51,496 KB
testcase_02 AC 287 ms
51,552 KB
testcase_03 AC 294 ms
51,732 KB
testcase_04 AC 284 ms
51,600 KB
testcase_05 AC 293 ms
51,704 KB
testcase_06 AC 291 ms
51,640 KB
testcase_07 AC 296 ms
51,936 KB
testcase_08 AC 293 ms
51,556 KB
testcase_09 AC 291 ms
51,728 KB
testcase_10 AC 293 ms
51,712 KB
testcase_11 AC 290 ms
51,772 KB
testcase_12 AC 294 ms
51,872 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args:Array<String>) {
         ^

ソースコード

diff #

fun main(args:Array<String>) {

    val ml = mutableListOf<String>()
    readLine()!!.toList().reversed().mapIndexed {index, it ->
        if( index != 0 && index%3 == 0) ml.add(",")
        ml.add(it.toString())
    }
    ml.reversed().joinToString("").let{println(it)}
}
0