結果

問題 No.289 数字を全て足そう
ユーザー lrf141lrf141
提出日時 2017-03-25 23:43:28
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 944 ms / 1,000 ms
コード長 191 bytes
コンパイル時間 8,652 ms
コンパイル使用メモリ 260,884 KB
実行使用メモリ 63,840 KB
最終ジャッジ日時 2024-06-30 00:58:49
合計ジャッジ時間 32,502 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 931 ms
63,668 KB
testcase_01 AC 906 ms
63,504 KB
testcase_02 AC 927 ms
63,672 KB
testcase_03 AC 917 ms
63,740 KB
testcase_04 AC 913 ms
63,708 KB
testcase_05 AC 912 ms
63,732 KB
testcase_06 AC 918 ms
63,776 KB
testcase_07 AC 941 ms
63,572 KB
testcase_08 AC 913 ms
63,736 KB
testcase_09 AC 914 ms
63,816 KB
testcase_10 AC 929 ms
63,680 KB
testcase_11 AC 940 ms
63,804 KB
testcase_12 AC 937 ms
63,836 KB
testcase_13 AC 928 ms
63,732 KB
testcase_14 AC 927 ms
63,524 KB
testcase_15 AC 928 ms
63,732 KB
testcase_16 AC 902 ms
63,512 KB
testcase_17 AC 913 ms
63,828 KB
testcase_18 AC 941 ms
63,788 KB
testcase_19 AC 923 ms
63,768 KB
testcase_20 AC 900 ms
63,740 KB
testcase_21 AC 926 ms
63,676 KB
testcase_22 AC 944 ms
63,624 KB
testcase_23 AC 905 ms
63,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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