結果

問題 No.289 数字を全て足そう
ユーザー lrf141lrf141
提出日時 2017-03-25 23:41:04
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 951 ms / 1,000 ms
コード長 192 bytes
コンパイル時間 8,201 ms
コンパイル使用メモリ 265,940 KB
実行使用メモリ 64,904 KB
最終ジャッジ日時 2024-06-30 00:57:35
合計ジャッジ時間 32,364 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 908 ms
63,444 KB
testcase_01 AC 912 ms
64,868 KB
testcase_02 AC 913 ms
64,904 KB
testcase_03 AC 915 ms
63,524 KB
testcase_04 AC 913 ms
63,632 KB
testcase_05 AC 924 ms
63,456 KB
testcase_06 AC 918 ms
63,528 KB
testcase_07 AC 937 ms
63,480 KB
testcase_08 AC 936 ms
63,408 KB
testcase_09 AC 923 ms
63,592 KB
testcase_10 AC 935 ms
63,652 KB
testcase_11 AC 941 ms
63,700 KB
testcase_12 AC 942 ms
63,548 KB
testcase_13 AC 936 ms
63,680 KB
testcase_14 AC 942 ms
63,484 KB
testcase_15 AC 945 ms
63,452 KB
testcase_16 AC 943 ms
63,672 KB
testcase_17 AC 946 ms
63,608 KB
testcase_18 AC 940 ms
63,464 KB
testcase_19 AC 937 ms
63,652 KB
testcase_20 AC 931 ms
63,576 KB
testcase_21 AC 919 ms
63,516 KB
testcase_22 AC 942 ms
63,648 KB
testcase_23 AC 951 ms
63,624 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(_.asDigit).sum)
    }
}
0