結果

問題 No.289 数字を全て足そう
ユーザー uchida_tuchida_t
提出日時 2023-05-31 13:06:14
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 374 ms / 1,000 ms
コード長 259 bytes
コンパイル時間 10,105 ms
コンパイル使用メモリ 432,564 KB
実行使用メモリ 52,056 KB
最終ジャッジ日時 2024-06-08 21:03:03
合計ジャッジ時間 19,250 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 290 ms
51,108 KB
testcase_01 AC 290 ms
50,920 KB
testcase_02 AC 294 ms
51,036 KB
testcase_03 AC 266 ms
49,716 KB
testcase_04 AC 284 ms
50,880 KB
testcase_05 AC 320 ms
51,188 KB
testcase_06 AC 309 ms
51,044 KB
testcase_07 AC 361 ms
51,760 KB
testcase_08 AC 365 ms
51,316 KB
testcase_09 AC 313 ms
51,064 KB
testcase_10 AC 312 ms
51,580 KB
testcase_11 AC 335 ms
51,156 KB
testcase_12 AC 364 ms
51,692 KB
testcase_13 AC 317 ms
51,444 KB
testcase_14 AC 368 ms
51,740 KB
testcase_15 AC 331 ms
51,376 KB
testcase_16 AC 324 ms
51,468 KB
testcase_17 AC 372 ms
51,504 KB
testcase_18 AC 372 ms
51,464 KB
testcase_19 AC 339 ms
51,396 KB
testcase_20 AC 363 ms
51,412 KB
testcase_21 AC 290 ms
50,988 KB
testcase_22 AC 374 ms
51,480 KB
testcase_23 AC 364 ms
52,056 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

fun main(args: Array<String>) {
    val text = readLine()!!
    val regex = Regex("[^0-9]")
    val result = regex.replace(text, "")
    if (result.isNotEmpty()) {
        println(result.chunked(1).sumOf { it.toInt() })
    } else {
        println(0)
    }
}
0