結果

問題 No.289 数字を全て足そう
ユーザー uchida_tuchida_t
提出日時 2023-05-31 13:00:00
言語 Kotlin
(2.1.0)
結果
AC  
実行時間 436 ms / 1,000 ms
コード長 254 bytes
コンパイル時間 17,968 ms
コンパイル使用メモリ 429,592 KB
実行使用メモリ 51,780 KB
最終ジャッジ日時 2024-12-28 13:44:35
合計ジャッジ時間 24,251 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 339 ms
51,016 KB
testcase_01 AC 336 ms
51,240 KB
testcase_02 AC 328 ms
51,072 KB
testcase_03 AC 325 ms
51,048 KB
testcase_04 AC 326 ms
51,188 KB
testcase_05 AC 363 ms
51,268 KB
testcase_06 AC 359 ms
51,324 KB
testcase_07 AC 421 ms
51,476 KB
testcase_08 AC 420 ms
51,780 KB
testcase_09 AC 351 ms
51,352 KB
testcase_10 AC 362 ms
51,388 KB
testcase_11 AC 391 ms
51,444 KB
testcase_12 AC 433 ms
51,572 KB
testcase_13 AC 379 ms
51,320 KB
testcase_14 AC 419 ms
51,708 KB
testcase_15 AC 388 ms
51,512 KB
testcase_16 AC 371 ms
51,392 KB
testcase_17 AC 421 ms
51,716 KB
testcase_18 AC 436 ms
51,620 KB
testcase_19 AC 387 ms
51,588 KB
testcase_20 AC 418 ms
51,592 KB
testcase_21 AC 337 ms
51,084 KB
testcase_22 AC 423 ms
51,676 KB
testcase_23 AC 405 ms
51,632 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^
Main.kt:5:9: warning: condition 'result != null' is always 'true'
    if (result != null) {
        ^
Main.kt:6:35: warning: 'sumBy((T) -> Int): Int' is deprecated. Use sumOf instead.
        println(result.chunked(1).sumBy { it.toInt() })
                                  ^

ソースコード

diff #

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