結果

問題 No.784 「,(カンマ)」
ユーザー 💕💖💞💕💖💞
提出日時 2019-05-06 15:02:21
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 285 ms / 2,000 ms
コード長 273 bytes
コンパイル時間 11,688 ms
コンパイル使用メモリ 426,324 KB
実行使用メモリ 57,080 KB
最終ジャッジ日時 2024-04-30 20:29:34
合計ジャッジ時間 13,611 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 272 ms
56,872 KB
testcase_01 AC 272 ms
56,816 KB
testcase_02 AC 271 ms
56,892 KB
testcase_03 AC 261 ms
56,848 KB
testcase_04 AC 274 ms
57,080 KB
testcase_05 AC 265 ms
56,828 KB
testcase_06 AC 269 ms
56,884 KB
testcase_07 AC 271 ms
56,960 KB
testcase_08 AC 273 ms
56,916 KB
testcase_09 AC 268 ms
56,832 KB
testcase_10 AC 267 ms
56,836 KB
testcase_11 AC 285 ms
56,820 KB
testcase_12 AC 273 ms
56,820 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