結果

問題 No.289 数字を全て足そう
ユーザー KisaragiEffectiveKisaragiEffective
提出日時 2019-11-09 15:21:43
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 396 ms / 1,000 ms
コード長 100 bytes
コンパイル時間 10,916 ms
コンパイル使用メモリ 427,412 KB
実行使用メモリ 51,076 KB
最終ジャッジ日時 2024-09-15 04:30:56
合計ジャッジ時間 19,805 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 305 ms
50,780 KB
testcase_01 AC 303 ms
50,316 KB
testcase_02 AC 303 ms
50,616 KB
testcase_03 AC 307 ms
50,180 KB
testcase_04 AC 306 ms
50,328 KB
testcase_05 AC 331 ms
50,708 KB
testcase_06 AC 331 ms
50,872 KB
testcase_07 AC 383 ms
50,716 KB
testcase_08 AC 383 ms
50,892 KB
testcase_09 AC 338 ms
50,756 KB
testcase_10 AC 340 ms
51,076 KB
testcase_11 AC 360 ms
50,980 KB
testcase_12 AC 396 ms
50,912 KB
testcase_13 AC 347 ms
50,420 KB
testcase_14 AC 387 ms
51,060 KB
testcase_15 AC 361 ms
50,976 KB
testcase_16 AC 344 ms
50,996 KB
testcase_17 AC 382 ms
50,944 KB
testcase_18 AC 389 ms
50,932 KB
testcase_19 AC 356 ms
50,916 KB
testcase_20 AC 381 ms
50,588 KB
testcase_21 AC 308 ms
50,184 KB
testcase_22 AC 388 ms
50,732 KB
testcase_23 AC 348 ms
51,076 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:82: warning: 'toInt(): Int' is deprecated. Conversion of Char to Number is deprecated. Use Char.code property instead.
fun main(){println(readLine()!!.replace(Regex("[^0-9]"),"").toCharArray().map{it.toInt()-48}.sum())}
                                                                                 ^

ソースコード

diff #

fun main(){println(readLine()!!.replace(Regex("[^0-9]"),"").toCharArray().map{it.toInt()-48}.sum())}
0