結果

問題 No.289 数字を全て足そう
ユーザー lrf141lrf141
提出日時 2017-03-25 23:45:17
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 966 ms / 1,000 ms
コード長 194 bytes
コンパイル時間 8,352 ms
コンパイル使用メモリ 271,140 KB
実行使用メモリ 63,640 KB
最終ジャッジ日時 2024-06-30 01:02:28
合計ジャッジ時間 32,529 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 912 ms
63,600 KB
testcase_01 AC 922 ms
63,288 KB
testcase_02 AC 926 ms
63,636 KB
testcase_03 AC 918 ms
63,532 KB
testcase_04 AC 911 ms
63,308 KB
testcase_05 AC 933 ms
63,392 KB
testcase_06 AC 932 ms
63,436 KB
testcase_07 AC 944 ms
63,280 KB
testcase_08 AC 940 ms
63,592 KB
testcase_09 AC 922 ms
63,500 KB
testcase_10 AC 941 ms
63,632 KB
testcase_11 AC 933 ms
63,632 KB
testcase_12 AC 948 ms
63,588 KB
testcase_13 AC 932 ms
63,620 KB
testcase_14 AC 939 ms
63,580 KB
testcase_15 AC 930 ms
63,496 KB
testcase_16 AC 930 ms
63,580 KB
testcase_17 AC 949 ms
63,488 KB
testcase_18 AC 933 ms
63,540 KB
testcase_19 AC 947 ms
63,516 KB
testcase_20 AC 937 ms
63,556 KB
testcase_21 AC 923 ms
63,204 KB
testcase_22 AC 946 ms
63,476 KB
testcase_23 AC 966 ms
63,640 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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