結果

問題 No.1168 Digit Sum Sequence
ユーザー バカらっくバカらっく
提出日時 2022-02-04 10:23:05
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 276 ms / 2,000 ms
コード長 204 bytes
コンパイル時間 9,637 ms
コンパイル使用メモリ 435,324 KB
実行使用メモリ 51,024 KB
最終ジャッジ日時 2024-06-11 10:06:15
合計ジャッジ時間 19,163 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 262 ms
50,856 KB
testcase_01 AC 258 ms
50,920 KB
testcase_02 AC 261 ms
50,884 KB
testcase_03 AC 258 ms
50,916 KB
testcase_04 AC 264 ms
51,024 KB
testcase_05 AC 259 ms
50,904 KB
testcase_06 AC 261 ms
50,704 KB
testcase_07 AC 259 ms
50,948 KB
testcase_08 AC 262 ms
50,876 KB
testcase_09 AC 262 ms
50,784 KB
testcase_10 AC 261 ms
50,932 KB
testcase_11 AC 261 ms
50,808 KB
testcase_12 AC 254 ms
50,836 KB
testcase_13 AC 260 ms
50,728 KB
testcase_14 AC 262 ms
50,896 KB
testcase_15 AC 266 ms
50,792 KB
testcase_16 AC 258 ms
50,700 KB
testcase_17 AC 260 ms
50,936 KB
testcase_18 AC 260 ms
50,600 KB
testcase_19 AC 257 ms
50,752 KB
testcase_20 AC 260 ms
50,948 KB
testcase_21 AC 262 ms
50,828 KB
testcase_22 AC 264 ms
50,932 KB
testcase_23 AC 255 ms
50,732 KB
testcase_24 AC 257 ms
50,832 KB
testcase_25 AC 257 ms
50,856 KB
testcase_26 AC 259 ms
50,928 KB
testcase_27 AC 266 ms
50,720 KB
testcase_28 AC 267 ms
50,916 KB
testcase_29 AC 263 ms
50,752 KB
testcase_30 AC 276 ms
50,868 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

fun main(args: Array<String>) {
    val a = mutableListOf(readLine()!!.toInt())
    for(i in (2..99)) {
        a.add(a.last().toString().map { it.toString().toInt() }.sum())
    }
    println(a.last())
}
0