結果

問題 No.9011 数字を全て足そう(数字だけ)
ユーザー toshiro_yanagitoshiro_yanagi
提出日時 2018-10-06 16:33:43
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 277 ms / 2,000 ms
コード長 157 bytes
コンパイル時間 12,250 ms
コンパイル使用メモリ 429,284 KB
実行使用メモリ 54,308 KB
最終ジャッジ日時 2024-10-13 20:12:37
合計ジャッジ時間 19,282 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 259 ms
54,024 KB
testcase_01 AC 269 ms
53,668 KB
testcase_02 AC 269 ms
53,612 KB
testcase_03 AC 269 ms
54,196 KB
testcase_04 AC 277 ms
54,156 KB
testcase_05 AC 267 ms
54,148 KB
testcase_06 AC 264 ms
54,088 KB
testcase_07 AC 260 ms
54,196 KB
testcase_08 AC 263 ms
54,132 KB
testcase_09 AC 275 ms
54,308 KB
testcase_10 AC 271 ms
54,252 KB
testcase_11 AC 258 ms
54,180 KB
testcase_12 AC 262 ms
54,304 KB
testcase_13 AC 263 ms
54,104 KB
testcase_14 AC 274 ms
54,008 KB
testcase_15 AC 264 ms
54,264 KB
testcase_16 AC 272 ms
54,116 KB
testcase_17 AC 272 ms
54,060 KB
testcase_18 AC 259 ms
54,132 KB
testcase_19 AC 261 ms
54,156 KB
testcase_20 AC 267 ms
54,052 KB
testcase_21 AC 259 ms
53,992 KB
testcase_22 AC 257 ms
54,028 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

fun main(args: Array<String>) {
    val S = readLine()!!
    var ans = 0

    S.forEach { c ->
        ans += c.toString().toInt()
    }

    println(ans)
}
0