結果

問題 No.1168 Digit Sum Sequence
ユーザー face4face4
提出日時 2021-04-10 23:58:31
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 296 ms / 2,000 ms
コード長 124 bytes
コンパイル時間 12,595 ms
コンパイル使用メモリ 430,516 KB
実行使用メモリ 54,356 KB
最終ジャッジ日時 2024-06-26 21:00:02
合計ジャッジ時間 21,278 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 289 ms
54,108 KB
testcase_01 AC 285 ms
54,120 KB
testcase_02 AC 287 ms
54,132 KB
testcase_03 AC 289 ms
54,124 KB
testcase_04 AC 288 ms
54,120 KB
testcase_05 AC 292 ms
54,332 KB
testcase_06 AC 290 ms
54,120 KB
testcase_07 AC 292 ms
54,148 KB
testcase_08 AC 290 ms
54,336 KB
testcase_09 AC 293 ms
54,280 KB
testcase_10 AC 290 ms
54,176 KB
testcase_11 AC 292 ms
54,144 KB
testcase_12 AC 291 ms
54,244 KB
testcase_13 AC 293 ms
54,148 KB
testcase_14 AC 290 ms
54,296 KB
testcase_15 AC 291 ms
54,172 KB
testcase_16 AC 288 ms
54,232 KB
testcase_17 AC 288 ms
54,252 KB
testcase_18 AC 287 ms
54,128 KB
testcase_19 AC 294 ms
54,328 KB
testcase_20 AC 288 ms
54,164 KB
testcase_21 AC 295 ms
54,156 KB
testcase_22 AC 289 ms
54,356 KB
testcase_23 AC 288 ms
54,236 KB
testcase_24 AC 293 ms
54,124 KB
testcase_25 AC 295 ms
54,276 KB
testcase_26 AC 296 ms
54,236 KB
testcase_27 AC 292 ms
54,224 KB
testcase_28 AC 290 ms
54,076 KB
testcase_29 AC 286 ms
54,124 KB
testcase_30 AC 292 ms
54,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fun main() {
    var n = readLine()!!.toInt()
    repeat(100){
        n = n.toString().sumOf{it-'0'}
    }
    println(n)
}
0