結果

問題 No.289 数字を全て足そう
ユーザー FoltaFolta
提出日時 2019-05-27 11:17:38
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 322 ms / 1,000 ms
コード長 160 bytes
コンパイル時間 11,982 ms
コンパイル使用メモリ 433,620 KB
実行使用メモリ 50,096 KB
最終ジャッジ日時 2024-11-20 18:37:23
合計ジャッジ時間 19,824 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 289 ms
49,992 KB
testcase_01 AC 292 ms
49,848 KB
testcase_02 AC 292 ms
49,604 KB
testcase_03 AC 294 ms
49,664 KB
testcase_04 AC 292 ms
49,556 KB
testcase_05 AC 301 ms
49,676 KB
testcase_06 AC 297 ms
49,728 KB
testcase_07 AC 316 ms
49,808 KB
testcase_08 AC 316 ms
49,788 KB
testcase_09 AC 299 ms
49,788 KB
testcase_10 AC 303 ms
49,580 KB
testcase_11 AC 312 ms
49,904 KB
testcase_12 AC 319 ms
49,896 KB
testcase_13 AC 306 ms
49,744 KB
testcase_14 AC 322 ms
49,968 KB
testcase_15 AC 318 ms
49,832 KB
testcase_16 AC 304 ms
49,736 KB
testcase_17 AC 315 ms
49,852 KB
testcase_18 AC 314 ms
49,976 KB
testcase_19 AC 311 ms
49,816 KB
testcase_20 AC 312 ms
50,000 KB
testcase_21 AC 294 ms
49,608 KB
testcase_22 AC 320 ms
50,096 KB
testcase_23 AC 318 ms
49,860 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:5:18: warning: 'toInt(): Int' is deprecated. Conversion of Char to Number is deprecated. Use Char.code property instead.
      if(49 <= i.toInt() && i.toInt() <= 57) sum += i.toInt() -48
                 ^
Main.kt:5:31: warning: 'toInt(): Int' is deprecated. Conversion of Char to Number is deprecated. Use Char.code property instead.
      if(49 <= i.toInt() && i.toInt() <= 57) sum += i.toInt() -48
                              ^
Main.kt:5:55: warning: 'toInt(): Int' is deprecated. Conversion of Char to Number is deprecated. Use Char.code property instead.
      if(49 <= i.toInt() && i.toInt() <= 57) sum += i.toInt() -48
                                                      ^

ソースコード

diff #

fun main(){
    val s = readLine()!!
    var sum = 0
    for(i in s){
      if(49 <= i.toInt() && i.toInt() <= 57) sum += i.toInt() -48
    }
    println(sum)
}
0