結果

問題 No.289 数字を全て足そう
ユーザー uchida_tuchida_t
提出日時 2023-05-31 13:06:14
言語 Kotlin
(2.1.0)
結果
AC  
実行時間 440 ms / 1,000 ms
コード長 259 bytes
コンパイル時間 16,303 ms
コンパイル使用メモリ 423,588 KB
実行使用メモリ 52,024 KB
最終ジャッジ日時 2024-12-28 13:45:28
合計ジャッジ時間 23,479 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 327 ms
51,104 KB
testcase_01 AC 325 ms
51,108 KB
testcase_02 AC 333 ms
51,068 KB
testcase_03 AC 305 ms
49,828 KB
testcase_04 AC 323 ms
51,140 KB
testcase_05 AC 356 ms
51,392 KB
testcase_06 AC 369 ms
51,260 KB
testcase_07 AC 418 ms
51,680 KB
testcase_08 AC 418 ms
51,736 KB
testcase_09 AC 356 ms
51,300 KB
testcase_10 AC 367 ms
51,252 KB
testcase_11 AC 386 ms
51,504 KB
testcase_12 AC 423 ms
51,656 KB
testcase_13 AC 375 ms
51,472 KB
testcase_14 AC 426 ms
51,540 KB
testcase_15 AC 385 ms
51,524 KB
testcase_16 AC 372 ms
51,524 KB
testcase_17 AC 424 ms
51,600 KB
testcase_18 AC 422 ms
51,592 KB
testcase_19 AC 390 ms
51,472 KB
testcase_20 AC 425 ms
51,592 KB
testcase_21 AC 434 ms
51,000 KB
testcase_22 AC 440 ms
51,600 KB
testcase_23 AC 398 ms
52,024 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