結果

問題 No.289 数字を全て足そう
ユーザー 5h0t4r05h0t4r0
提出日時 2015-11-02 17:25:03
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 985 ms / 1,000 ms
コード長 169 bytes
コンパイル時間 12,668 ms
コンパイル使用メモリ 272,136 KB
実行使用メモリ 65,596 KB
最終ジャッジ日時 2024-06-29 04:55:19
合計ジャッジ時間 32,589 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 866 ms
65,244 KB
testcase_01 AC 895 ms
65,472 KB
testcase_02 AC 832 ms
65,276 KB
testcase_03 AC 885 ms
64,992 KB
testcase_04 AC 868 ms
65,272 KB
testcase_05 AC 875 ms
65,476 KB
testcase_06 AC 863 ms
65,476 KB
testcase_07 AC 881 ms
65,228 KB
testcase_08 AC 863 ms
65,488 KB
testcase_09 AC 851 ms
65,460 KB
testcase_10 AC 897 ms
65,532 KB
testcase_11 AC 876 ms
65,508 KB
testcase_12 AC 887 ms
65,248 KB
testcase_13 AC 885 ms
65,244 KB
testcase_14 AC 878 ms
65,252 KB
testcase_15 AC 985 ms
65,392 KB
testcase_16 AC 867 ms
65,312 KB
testcase_17 AC 866 ms
65,576 KB
testcase_18 AC 880 ms
65,244 KB
testcase_19 AC 869 ms
65,356 KB
testcase_20 AC 895 ms
65,384 KB
testcase_21 AC 856 ms
65,404 KB
testcase_22 AC 951 ms
65,596 KB
testcase_23 AC 898 ms
65,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

object Yuki289 extends App{
  val input = new java.util.Scanner(System.in)
  val s = input.next
  val result = s.filter(_.isDigit).map(_.asDigit).sum
  println(result)
}
0