結果

問題 No.289 数字を全て足そう
ユーザー FoltaFolta
提出日時 2019-05-27 11:17:38
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 280 ms / 1,000 ms
コード長 160 bytes
コンパイル時間 9,528 ms
コンパイル使用メモリ 431,924 KB
実行使用メモリ 54,600 KB
最終ジャッジ日時 2024-04-30 20:46:55
合計ジャッジ時間 16,851 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 242 ms
54,176 KB
testcase_01 AC 253 ms
54,332 KB
testcase_02 AC 242 ms
54,252 KB
testcase_03 AC 242 ms
54,180 KB
testcase_04 AC 245 ms
54,160 KB
testcase_05 AC 247 ms
54,364 KB
testcase_06 AC 243 ms
54,304 KB
testcase_07 AC 262 ms
54,308 KB
testcase_08 AC 264 ms
54,408 KB
testcase_09 AC 255 ms
54,332 KB
testcase_10 AC 252 ms
54,340 KB
testcase_11 AC 256 ms
54,272 KB
testcase_12 AC 271 ms
54,524 KB
testcase_13 AC 251 ms
54,260 KB
testcase_14 AC 275 ms
54,500 KB
testcase_15 AC 264 ms
54,316 KB
testcase_16 AC 258 ms
54,352 KB
testcase_17 AC 254 ms
54,372 KB
testcase_18 AC 262 ms
54,600 KB
testcase_19 AC 263 ms
54,328 KB
testcase_20 AC 263 ms
54,476 KB
testcase_21 AC 244 ms
54,360 KB
testcase_22 AC 280 ms
54,464 KB
testcase_23 AC 265 ms
54,512 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