結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 793 ms
65,008 KB
testcase_01 AC 810 ms
65,152 KB
testcase_02 AC 823 ms
65,072 KB
testcase_03 AC 814 ms
65,032 KB
testcase_04 AC 823 ms
64,772 KB
testcase_05 AC 834 ms
65,024 KB
testcase_06 AC 812 ms
65,016 KB
testcase_07 AC 814 ms
65,148 KB
testcase_08 AC 831 ms
64,808 KB
testcase_09 AC 806 ms
64,884 KB
testcase_10 AC 813 ms
64,996 KB
testcase_11 AC 876 ms
64,952 KB
testcase_12 AC 830 ms
65,068 KB
testcase_13 AC 837 ms
65,076 KB
testcase_14 AC 826 ms
65,164 KB
testcase_15 AC 806 ms
65,084 KB
testcase_16 AC 800 ms
64,904 KB
testcase_17 AC 821 ms
64,964 KB
testcase_18 AC 820 ms
65,080 KB
testcase_19 AC 838 ms
65,096 KB
testcase_20 AC 845 ms
64,940 KB
testcase_21 AC 849 ms
65,020 KB
testcase_22 AC 813 ms
65,192 KB
testcase_23 AC 815 ms
65,036 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner
object no289{
    def main(args:Array[String]):Unit={
        val scan = new Scanner(System.in)
        val str = scan.next
        println(str.filter(c=>c.isDigit).map(c=>c-'0').sum)
    }
}
0