結果

問題 No.289 数字を全て足そう
ユーザー lrf141lrf141
提出日時 2017-03-25 23:49:18
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 923 ms / 1,000 ms
コード長 300 bytes
コンパイル時間 7,170 ms
コンパイル使用メモリ 263,860 KB
実行使用メモリ 65,052 KB
最終ジャッジ日時 2024-06-30 00:59:21
合計ジャッジ時間 28,766 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 795 ms
64,928 KB
testcase_01 AC 797 ms
64,712 KB
testcase_02 AC 808 ms
64,788 KB
testcase_03 AC 811 ms
64,744 KB
testcase_04 AC 787 ms
64,696 KB
testcase_05 AC 817 ms
64,976 KB
testcase_06 AC 821 ms
64,952 KB
testcase_07 AC 838 ms
64,732 KB
testcase_08 AC 837 ms
64,724 KB
testcase_09 AC 813 ms
64,880 KB
testcase_10 AC 796 ms
64,668 KB
testcase_11 AC 807 ms
64,840 KB
testcase_12 AC 806 ms
64,728 KB
testcase_13 AC 821 ms
64,760 KB
testcase_14 AC 923 ms
64,708 KB
testcase_15 AC 827 ms
64,660 KB
testcase_16 AC 830 ms
64,764 KB
testcase_17 AC 830 ms
64,972 KB
testcase_18 AC 817 ms
64,928 KB
testcase_19 AC 823 ms
64,732 KB
testcase_20 AC 800 ms
64,980 KB
testcase_21 AC 780 ms
64,728 KB
testcase_22 AC 825 ms
64,932 KB
testcase_23 AC 808 ms
65,052 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner
object no289{
    def main(args:Array[String]):Unit={
        val scan = new Scanner(System.in)
        val str = scan.next
        var res = 0
        for(i <- str){
            if(i.isDigit){
                res += i-'0'
            }
        }
        println(res)
    }
}
0