結果

問題 No.289 数字を全て足そう
ユーザー uchida_tuchida_t
提出日時 2023-05-31 13:00:00
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 354 ms / 1,000 ms
コード長 254 bytes
コンパイル時間 12,398 ms
コンパイル使用メモリ 425,188 KB
実行使用メモリ 51,820 KB
最終ジャッジ日時 2024-06-08 21:02:30
合計ジャッジ時間 21,070 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 280 ms
50,976 KB
testcase_01 AC 278 ms
50,984 KB
testcase_02 AC 280 ms
51,104 KB
testcase_03 AC 279 ms
51,072 KB
testcase_04 AC 277 ms
51,084 KB
testcase_05 AC 295 ms
51,212 KB
testcase_06 AC 305 ms
51,256 KB
testcase_07 AC 346 ms
51,440 KB
testcase_08 AC 347 ms
51,580 KB
testcase_09 AC 311 ms
51,312 KB
testcase_10 AC 318 ms
51,252 KB
testcase_11 AC 316 ms
51,308 KB
testcase_12 AC 352 ms
51,524 KB
testcase_13 AC 315 ms
51,332 KB
testcase_14 AC 354 ms
51,584 KB
testcase_15 AC 328 ms
51,376 KB
testcase_16 AC 306 ms
51,304 KB
testcase_17 AC 337 ms
51,520 KB
testcase_18 AC 352 ms
51,444 KB
testcase_19 AC 320 ms
51,476 KB
testcase_20 AC 344 ms
51,504 KB
testcase_21 AC 275 ms
50,948 KB
testcase_22 AC 350 ms
51,408 KB
testcase_23 AC 335 ms
51,820 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