結果

問題 No.289 数字を全て足そう
ユーザー javyjavy
提出日時 2015-11-02 22:33:08
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 292 ms / 1,000 ms
コード長 319 bytes
コンパイル時間 10,006 ms
コンパイル使用メモリ 433,144 KB
実行使用メモリ 54,704 KB
最終ジャッジ日時 2024-11-19 14:53:00
合計ジャッジ時間 17,656 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 257 ms
54,204 KB
testcase_01 AC 260 ms
54,188 KB
testcase_02 AC 255 ms
54,352 KB
testcase_03 AC 252 ms
54,324 KB
testcase_04 AC 253 ms
54,200 KB
testcase_05 AC 263 ms
54,236 KB
testcase_06 AC 256 ms
54,276 KB
testcase_07 AC 279 ms
54,504 KB
testcase_08 AC 277 ms
54,480 KB
testcase_09 AC 271 ms
54,412 KB
testcase_10 AC 264 ms
54,376 KB
testcase_11 AC 276 ms
54,340 KB
testcase_12 AC 287 ms
54,516 KB
testcase_13 AC 273 ms
54,292 KB
testcase_14 AC 283 ms
54,572 KB
testcase_15 AC 277 ms
54,580 KB
testcase_16 AC 272 ms
54,384 KB
testcase_17 AC 279 ms
54,472 KB
testcase_18 AC 287 ms
54,368 KB
testcase_19 AC 283 ms
54,504 KB
testcase_20 AC 279 ms
54,612 KB
testcase_21 AC 252 ms
54,232 KB
testcase_22 AC 277 ms
54,636 KB
testcase_23 AC 292 ms
54,704 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:6:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^
Main.kt:8:17: warning: no cast needed
    var sum = 0 as Int
                ^

ソースコード

diff #

package Yukicoder

/**
 * Created by hichikawa on 2015/11/02.
 */
fun main(args: Array<String>) {
    val str = readLine() as String
    var sum = 0 as Int
    for (ch : Char in str) {
        when (ch) {
            '1','2','3','4','5','6','7','8','9' -> sum += ch.toString().toInt()
        }
    }
    println(sum)
}
0